使用JavaMail发送邮件
2008-01-05 08:58:52 来源:WEB开发网/**
* Copyright_2006, Liao Xuefeng
* Created on 2006-4-7
*/
package com.crackj2ee.util.mail;
import java.util.*;
import javax.mail.*;
import javax.mail.internet.*;
public class SimpleMailSender {
public static void main(String[] arge) throws Exception {
String from = "abc_abc_abc@163.com";
String to = "xyz_xyz_xyz@163.com";
String subject = "Test mail";
String body = "A text mail";
PRoperties props = System.getProperties();
// 设置SMTP邮件服务器:
props.put("mail.smtp.host", "smtp.163.com");
// SMTP服务器需要验证:
props.put("mail.smtp.auth", "true");
// 传入用户名和口令:
session session = Session.getDefaultInstance(props,
new PassWordAuthenticator("your_username", "your_password"));
// 创建新邮件:
Message msg = new MimeMessage(session);
msg.setFrom(new InternetAddress(from));
msg.setRecipients(Message.RecipientType.TO, InternetAddress.parse(to, false));
msg.setSubject(subject);
msg.setText(body);
msg.setSentDate(new Date());
// 发送:
Transport.send(msg);
}
}
class PasswordAuthenticator extends Authenticator {
private String username;
private String password;
public PasswordAuthenticator(String username, String password) {
this.username = username;
this.password = password;
}
protected PasswordAuthentication getPasswordAuthentication() {
return new PasswordAuthentication(username, password);
}
- ››使用脚本恢复WinXP系统的用户登录密码
- ››使用phpMyadmin创建数据库及独立数据库帐号
- ››使用Zend Framework框架中的Zend_Mail模块发送邮件...
- ››使用cout标准输出如何控制小数点后位数
- ››使用nofollow标签做SEO的技巧
- ››使用 WebSphere Message Broker 的 WebSphere Tra...
- ››使用SQL Server事件探查器做应用程序的性能分析
- ››使用SQL Server事件探查器分析死锁原因
- ››使用纯文本文件打造WCF服务
- ››使用 Dojo 开发定制 Business Space 小部件,第 4...
- ››使用 ADDRESS 与 INDIRECT函数查询信息
- ››使用 COLUMN函数编制单元信息
更多精彩
赞助商链接