发送邮件

最近最近做一个ssh的小项目,需要发送邮件验证激活码,
在发邮件的时候卡主了,现在已经解决,
这里用的是新浪邮箱给QQ发送的邮件。
发送邮件_第1张图片

如图所示,保证你的新浪邮箱SMTP和POP3服务器都是开启状态
SMTP:发送邮件协议
POP3:接收邮件协议

package com.dust.utils;

import java.util.Properties;

import javax.mail.Authenticator;
import javax.mail.Message;
import javax.mail.PasswordAuthentication;
import javax.mail.Session;
import javax.mail.Transport;
import javax.mail.Message.RecipientType;
import javax.mail.internet.InternetAddress;
import javax.mail.internet.MimeMessage;

public class MailSendUtil {

    /** * 发送邮件方法,由外部调用 * @param to 收件人 * @param captcha 激活码 * @throws Exception */
    public static void sendMail(String to, String captcha) throws Exception {

        final Properties p = System.getProperties();
        p.setProperty("mail.smtp.host", "smtp.sina.com"); //设置主机
        p.setProperty("mail.smtp.auth", "true"); //设置验证是true
        p.setProperty("mail.smtp.user", "[email protected]"); //发件人的邮箱
        p.setProperty("mail.smtp.pass", "xxx"); //发件人的密码

        //获取session
        Session session = Session.getInstance(p, new Authenticator() {
            protected PasswordAuthentication getPasswordAuthentication() {
                return new PasswordAuthentication(p
                        .getProperty("mail.smtp.user"), p
                        .getProperty("mail.smtp.pass"));
            }
        });

        session.setDebug(true);
        Message message = new MimeMessage(session);
        message.setSubject("dust测试邮件"); //消息的主题
        message.setReplyTo(InternetAddress.parse("[email protected]"));//发件人邮箱
        message.setFrom(new InternetAddress(p.getProperty("mail.smtp.user"),
                "网站管理员")); //发送人姓名
        message.setRecipient(RecipientType.TO,
                new InternetAddress(to)); //发送地址
        //设置内容
        message.setContent("你的服务器的地址"+captcha, "text/html;charset=utf-8");
        //发送邮件
        Transport.send(message);
    }

}

测试类:

@Test
    public void testMail() throws Exception {

        MailSendUtil.sendMail("[email protected]", "qwertyuiop0987654321");
    }

第一个参数是收件人邮箱,第二个参数是激活码
邮件已发送成功,此处不上图了。

你可能感兴趣的:(邮件,pop,smtp,新浪邮箱)