1.协议 SMTP发送
POP3接收 端口是110
2.邮件发送过程
例如连接网易163的SMTP服务器 发给qq邮箱的SMTP服务器
3.邮件服务器配置
http://download.csdn.net/download/u010168160/9227403 易邮服务器下载
Foxmail 官网 <a href="Foxmail" target="_blank" rel="nofollow">http://www.foxmail.com/">Foxmail</a>
4.jar包地址
http://pan.baidu.com/s/1mh71zSG
5.代码
/**
- 发送邮件的方法
- @param to 邮箱地址
-
@param msg 发送的信息
*/
public static void sendMail(String to, String msg) throws Exception {// 1.创建连接对象,连接到邮箱服务器 Properties prop = new Properties(); // 设置邮件服务器主机名 prop.setProperty("mail.host", host); // 发送邮件协议名称 prop.setProperty("mail.transport.protocol", "smtp"); // 发送服务器需要身份验证 prop.setProperty("mail.smtp.auth", "true"); /* 注意:使用qq邮箱发送需要开启ssl加密 */ /* MailSSLSocketFactory sf = new MailSSLSocketFactory(); sf.setTrustAllHosts(true); prop.setProperty("mail.smtp.ssl.enable", "true"); prop.put("mail.smtp.ssl.socketFactory", sf); */ Session session = Session.getInstance(prop, new Authenticator() { public PasswordAuthentication getPasswordAuthentication() { //设置发送人的帐号和密码 return new PasswordAuthentication(from[0], from[1]); } }); // 2.创建邮件对象 Message message = new MimeMessage(session); // 2.1 设置发件者 message.setFrom(new InternetAddress(from[0])); // 2.2 设置收件者 message.setRecipient(Message.RecipientType.TO, new InternetAddress(to)); // 2.3 设置邮件主题 message.setSubject("欢迎您注册我们网站"); // 2.4 设置邮件的正文 message.setContent("<h1>请点击<a href='http://localhost:8080/maildemo/ActiveServlet?uid="+msg+"'>此链接</a>以激活账号</h1>", "text/html;charset=utf-8"); // 3.发送邮件 Transport.send(message);
}
7.https://github.com/hdonghong/JavaProject/tree/master/maildemo 源码地址
点击查看更多内容
2人点赞
评论
共同学习,写下你的评论
评论加载中...
作者其他优质文章
正在加载中
感谢您的支持,我会继续努力的~
扫码打赏,你说多少就多少
赞赏金额会直接到老师账户
支付方式
打开微信扫一扫,即可进行扫码打赏哦