Java Mail与Apache Mail发送邮件示例
一、邮件简介
一封邮件由很多信息构成,主要的信息如下,其他的暂时不考虑,例如抄送等:
1、收件人:收件人的邮箱地址,例如
2、收件人姓名:大部分的邮件显示时都会显示,例如loadfate
3、发件人:发件人的邮箱地址
4、发件人姓名:
5、主题:邮件的标题
6、内容及附件:邮件的主要内容
二、使用java发邮件的通用步骤
一般的项目中没有单独的邮件服务器,一般情况下都是使用别人的服务器。
1、设置smtp服务器:不同的邮件服务器有不同的地址,例如:smtp.qq.com表示腾讯的smtp服务器。
2、授权:使用该服务器的帐号和密码登录该服务器。
3、创建邮件:创建一份包含所有信息的邮件,比如发件人、收件人、内容等。
4、设置邮件的属性:为邮件的属性添加数据。
5、发送邮件:因为封装不同,发送的方式不一致。
三、java mail与apache mail
apache mail是对java mail的封装,使用起来更加的简便,逻辑层次感更好。
使用java mail只需要导入一个jar包:mail.jar。
使用apache mail的时候需要导入两个jar包:mail.jar、commons-email-1.3.1.jar。
四、使用java mail发送邮件
public static void main(string[] args) throws exception {
final string user = "779554589";
final string password = "";
string fromaddress = "";
string toaddress = "";
string subject = "邮件测试主题";
string content = "这是一个测试邮件<b>哈哈</b>";
//配置参数
properties props = new properties();
props.setproperty("mail.smtp.auth", "true");
props.setproperty("mail.transport.protocol", "smtp");
props.setproperty("mail.host", "smtp.qq.com");
// 方法一:使用transport对象发送邮件
{
//通过参数生成会话
session session = session.getinstance(props);
//启用调试模式
session.setdebug(true);
//创建一封邮件,并设置信息
message message = new mimemessage(session);
message.setfrom(new internetaddress(fromaddress));
message.setsubject(subject);
message.settext(content);
//创建传输
transport transport = session.gettransport();
//连接smtp服务器
transport.connect(user, password);
//发送
transport.sendmessage(message, new internetaddress[] { new internetaddress(toaddress) });
transport.close();
}
// 方法二:使用transport类静态方法发送邮件
{
//生成session时以获取授权连接
session session = session.getinstance(props, new authenticator() {
@override
protected passwordauthentication getpasswordauthentication() {
return new passwordauthentication(user, password);
}
});
session.setdebug(true);
//创建一封邮件,并设置信息
message message = new mimemessage(session);
message.setsubject(subject);
message.setfrom(new internetaddress(fromaddress));
message.setrecipient(recipienttype.to, new internetaddress(toaddress));
message.setcontent(content, "text/html;charset=utf-8");
//直接发送,message通过已经授权的session生成
transport.send(message);
}
}
五、使用apache mail发送邮件
public class apachemailtest {
// smtp服务器
private string hostname = "smtp.qq.com";
// 帐号与密码
private string username = "779554589";
private string password = "这是个秘密";
// 发件人
private string fromaddress = "";
// 发件人姓名
private string fromname = "loadfate";
public static void main(string[] args) throws exception {
// 收件人与收件人名字
string toaddress = "";
string toname = "loadfate";
apachemailtest test = new apachemailtest();
// 所有的异常都为处理,方便浏览
test.sendsimpleemail(toaddress, toname);
test.sendhtmlemail(toaddress, toname);
test.sendmultipartemail(toaddress, toname);
system.out.println("发送完成");
}
// 发送简单邮件,类似一条信息
public void sendsimpleemail(string toaddress, string toname) throws exception {
simpleemail email = new simpleemail();
email.sethostname(hostname);// 设置smtp服务器
email.setauthentication(username, password);// 设置授权信息
email.setcharset("utf-8");
email.setfrom(fromaddress, fromname, "utf-8");// 设置发件人信息
email.addto(toaddress, toname, "utf-8");// 设置收件人信息
email.setsubject("测试主题");// 设置主题
email.setmsg("这是一个简单的测试!");// 设置邮件内容
email.send();// 发送邮件
}
// 发送html内容的邮件
public void sendhtmlemail(string toaddress, string toname) throws exception {
htmlemail email = new htmlemail();
email.sethostname(hostname);
email.setauthentication(username, password);
email.setcharset("utf-8");
email.addto(toaddress, toname, "utf-8");
email.setfrom(fromaddress, fromname, "utf-8");
email.setsubject("这是一个html邮件");
// 设置html内容,实际使用时可以从文本读入写好的html代码
email.sethtmlmsg("<div style='width:100px;height:200px;'>a</div>");
email.send();
}
// 发送复杂的邮件,包含附件等
public void sendmultipartemail(string toaddress, string toname) throws exception {
multipartemail email = null;
email = new multipartemail();
email.sethostname(hostname);
email.setauthentication(username, password);
email.setcharset("utf-8");
email.addto(toaddress, toname, "utf-8");
email.setfrom(fromaddress, fromname, "utf-8");
email.setsubject("这是有附件的邮件");
email.setmsg("<a href='#'>测试内容</a>");
// 为邮件添加附加内容
emailattachment attachment = new emailattachment();
attachment.setpath("d:\\邮件.txt");// 本地文件
// attachment.seturl(new url("远程文件
attachment.setdisposition(emailattachment.attachment);
attachment.setdescription("描述信息");
// 设置附件显示名字,必须要编码,不然中文会乱码
attachment.setname(mimeutility.encodetext("邮件.txt"));
// 将附件添加到邮件中
email.attach(attachment);
email.send();
}
}
六、附件
项目文件夹:maildemo
下载地址:http://pan.baidu.com/s/1bn1y6bx
如果有什么疑问或者建议,请联系我
文件说明:
1、maildemo.zip :maildemo的源代码
2、mail.jar :java mail的jar包
3、commons-email-1.3.1.jar :apache mail的jar包
上一篇: Java基础之如何学好Java