Mail邮件在JavaEE项目中的应用

Mail邮件在JavaEE项目中的应用

**一、工具类代码展示

import java.util.Properties;

import javax.mail.Authenticator;
import javax.mail.Message;
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;
import javax.mail.internet.MimeMessage.RecipientType;

public class MailUtils {

	public static void sendMail(String email, String emailMsg)
			throws AddressException, MessagingException {
		// 1.创建一个程序与邮件服务器会话对象 Session
		//	此处的session不同于web项目中的会话session
		Properties props = new Properties();
		//设置发送的协议
		//props.setProperty("mail.transport.protocol", "SMTP");
		//发送一般采用SMTP的协议,接收一般采用pop3\pop\imap三种
		//设置发送邮件的服务器
		//props.setProperty("mail.host", "smtp.126.com");
		//设置发送的服务器,可以事126服务器、163服务器、qq服务器或其他均可
		//props.setProperty("mail.smtp.auth", "true");// 指定验证为true
		//是否验证密码
		// 创建验证器
		Authenticator auth = new Authenticator() {
			public PasswordAuthentication getPasswordAuthentication() {
				//设置发送人的帐号和密码
				//从此处发送
				return new PasswordAuthentication("admin@store.com", "admin");
			}
		};

		Session session = Session.getInstance(props, auth);

		// 2.创建一个Message,它相当于是邮件内容
		Message message = new MimeMessage(session);

		//设置发送者
		message.setFrom(new InternetAddress("admin@store.com"));

		//设置发送方式与接收者
		message.setRecipient(RecipientType.TO, new InternetAddress(email)); 

		//设置邮件主题
		message.setSubject("用户激活");
		// message.setText("这是一封激活邮件,请<a href='#'>点击</a>");

		String url="http://localhost:8080/store_v5/UserServlet?method=active&code="+emailMsg;
		String content="<h1>来自坤的激活邮件!激活请点击以下链接!</h1><h3><a href='"+url+"'>"+url+"</a></h3>";
		//设置邮件内容
		message.setContent(content, "text/html;charset=utf-8");

		// 3.创建 Transport用于将邮件发送
		Transport.send(message);
	}
	public static void main(String[] args) throws AddressException, MessagingException {
		MailUtils.sendMail("aaa@store.com", "123456789");
		//调用方法
	}
}

**二、错误bug
在这里插入图片描述
解决方法:这里是jar包缺少,引入mail.jar和activation.jar即可
资源链接://download.csdn.net/download/weixin_44717095/12152637
**三、其余相关软件
模拟邮箱服务器mailServer
在这里插入图片描述
邮件客户端Firefox
在这里插入图片描述
个人使用比较方便,具体安装和使用非常简单,如果安装过程有小警告,可忽略,不影响使用。
资源链接://download.csdn.net/download/weixin_44717095/12152629

欢迎各位留言、沟通交流!

posted @ 2020-02-13 21:30  李泽坤  阅读(158)  评论(0编辑  收藏  举报