这样我们就新建好了测试的邮箱账号,在这里用Foxmail来接收邮件。
4、安装foxmail并配置发送邮件服务器:
5、引用jar
6、具体的代码实现
邮件发送的工具类:
package cn.itcast.shop.utils;
import java.util.Properties;
import javax.mail.Authenticator;
import javax.mail.Message;
import javax.mail.Message.RecipientType;
import javax.mail.MessagingException;
import javax.mail.PasswordAuthentication;
import javax.mail.Session;
import javax.mail.Transport;
import javax.mail.internet.AddressException;
import javax.mail.internet.InternetAddress;
import javax.mail.internet.MimeMessage;
/*
- 邮件发送工具类
*/
public class MailUtils {
/*
-
发送邮件的方法
-
@param to 收件人
-
@param code 激活码
*/
public static void sendMail(String to,String code){
/*
-
1、获得1个Session对象
-
2、创建一个代表邮件的对象Message
-
3、发送邮件transport
*/
//1、获得对连接象
Properties props=new Properties();
props.setProperty(“mail.host”, “localhost”);
Session session=Session.getInstance(props, new Authenticator(){
@Override
protected PasswordAuthentication getPasswordAuthentication() {
return new PasswordAuthentication(“service@shop.com”,“1”);
}
});
//2、创建邮件对象
Message message = new MimeMessage(session);
// 设置发件人:
try {
message.setFrom(new InternetAddress(“service@shop.com”));
// 设置收件人:
message.addRecipient(RecipientType.TO, new InternetAddress(to));
// 抄送 CC 密送BCC
// 设置标题
message.setSubject(“来自北极激活邮件”);
// 设置邮件正文:
message.setContent(“
北极激活邮件!点下面链接完成激活操作!
http://192.168.21.197:8088/shop/user_active.action?code=”+code+“
”, “text/html;charset=UTF-8”);// 3.发送邮件:
Transport.send(message);
} catch (AddressException e) {
e.printStackTrace();
} catc 《一线大厂Java面试题解析+后端开发学习笔记+最新架构讲解视频+实战项目源码讲义》无偿开源 威信搜索公众号【编程进阶路】 h (MessagingException e) {
e.printStackTrace();
}
}
public static void main(String[] args){
sendMail(“zz@shop.com”,“1111”);
}
}
在service中实现代码