美文网首页
java发送邮件

java发送邮件

作者: _情绪疯子 | 来源:发表于2019-04-09 11:23 被阅读0次
package com.kalix.training.course.biz.util;

import com.sun.mail.util.MailSSLSocketFactory;

import javax.mail.*;
import javax.mail.internet.InternetAddress;
import javax.mail.internet.MimeBodyPart;
import javax.mail.internet.MimeMessage;
import javax.mail.internet.MimeMultipart;
import java.security.GeneralSecurityException;
import java.util.Properties;

public class SendMail {
    public static Boolean sendMail(String email,long id) throws GeneralSecurityException {
        //甲方提供对公邮箱
        // 发件人电子邮箱
        final String from = "1796989844@qq.com";
        // 发件人电子邮箱密码
        final String pass = "hliourlbnothcebi";// POP3/SMTP服务

        // 指定发送邮件的主机为 smtp.qq.com
        String host = "smtp.qq.com"; // 邮件服务器

        // 获取系统属性
        Properties properties = System.getProperties();

        // 设置邮件服务器
        properties.setProperty("mail.smtp.host", host);

        properties.put("mail.smtp.auth", "true");
        MailSSLSocketFactory sf = new MailSSLSocketFactory();
        sf.setTrustAllHosts(true);
        properties.put("mail.smtp.ssl.enable", "true");
        properties.put("mail.smtp.ssl.socketFactory", sf);
        // 获取默认session对象

        Session session = Session.getInstance(properties, new Authenticator() {
            public PasswordAuthentication getPasswordAuthentication() { // qq邮箱服务器账户、第三方登录授权码
                return new PasswordAuthentication(from, pass); // 发件人邮件用户名、密码
            }
        });
 /**
        Session session = Session.getDefaultInstance(properties, new Authenticator() {
            public PasswordAuthentication getPasswordAuthentication() { // qq邮箱服务器账户、第三方登录授权码
                return new PasswordAuthentication(from, pass); // 发件人邮件用户名、密码
            }
        });
 **/

        try {
            // 创建默认的 MimeMessage 对象
            MimeMessage message = new MimeMessage(session);

            // Set From: 头部头字段
            message.setFrom(new InternetAddress(from));

            // Set To: 头部头字段 接收人邮箱
            message.addRecipient(Message.RecipientType.TO, new InternetAddress(email));

            // Set Subject: 主题文字
            String  subject ="邮件主题";
            message.setSubject(subject);

            // 创建消息部分
            BodyPart messageBodyPart = new MimeBodyPart();

            // 消息
            // MiniMultipart类是一个容器类,包含MimeBodyPart类型的对象
            Multipart mainPart = new MimeMultipart();
            // 创建一个包含HTML内容的MimeBodyPart
            BodyPart html = new MimeBodyPart();
            // 设置HTML内容
            String str ="http://localhost:8790/newpassword";// 前台路径(localhost:8788/aaa/bbb?email=email) msg使用MD5加密

            html.setContent("<a href=\""+str+"?id="+id+"\">"+"点击跳转"+"</a>", "text/html; charset=utf-8");

            mainPart.addBodyPart(html);
            // 将MiniMultipart对象设置为邮件内容
            messageBodyPart.setContent(mainPart);

            // 创建多重消息
            Multipart multipart = new MimeMultipart();

            // 设置文本消息部分
            multipart.addBodyPart(messageBodyPart);

            // 发送完整消息
            message.setContent(multipart);

            // 发送消息
            Transport.send(message);
            // System.out.println("Sent message successfully....");
            return true;
        } catch (MessagingException e) {
            e.printStackTrace();
        }
        return false;
    }
}

相关文章

网友评论

      本文标题:java发送邮件

      本文链接:https://www.haomeiwen.com/subject/sbqbiqtx.html