阿里云STMP邮箱验证

<!-- https://mvnrepository.com/artifact/javax.mail/mail -->
<dependency>
    <groupId>javax.mail</groupId>
    <artifactId>mail</artifactId>
    <version>1.4.7</version>
</dependency>

添加完maven依赖以后,更短信验证一样写一个工具类,

import java.util.Properties;
import java.util.Random;


import javax.mail.Address;
import javax.mail.Authenticator;
import javax.mail.MessagingException;
import javax.mail.PasswordAuthentication;
import javax.mail.Session;
import javax.mail.Transport;
import javax.mail.internet.InternetAddress;
import javax.mail.internet.MimeMessage;


import org.apache.log4j.Logger;


public class MailUtil {
final Logger logger = Logger.getLogger(MailUtil.class);
private static final String ALIDM_SMTP_HOST = "smtpdm.aliyun.com";
private static final String AUTH="true";
private static final String CLASS="javax.net.ssl.SSLSocketFactory";
private static final String SOCKETFACTORY_PORT="465";//为什么不用25端口,因为现在的阿里云已经将25禁用了
private static final String PORT="465";
private static final String FROM="";//这个是你设置发信地址的时候的发信地址
private static final String PASSWORD="";//这个就是你设置的STMP的密码
    public int SendMail(String email) {
    logger.info("发送邮件!!");
    int  x =0;
        // 配置发送邮件的环境属性
        final Properties props = new Properties();
        // 表示SMTP发送邮件,需要进行身份验证
        props.put("mail.smtp.auth", AUTH);
        props.put("mail.smtp.host", ALIDM_SMTP_HOST);
        props.put("mail.smtp.socketFactory.class", CLASS);
        props.put("mail.smtp.socketFactory.port", SOCKETFACTORY_PORT);
        props.put("mail.smtp.port", PORT);
        // 发件人的账号
        props.put("mail.user", FROM);
        // 访问SMTP服务时需要提供的密码
        props.put("mail.password", PASSWORD);
        // 构建授权信息,用于进行SMTP进行身份验证
        Authenticator authenticator = new Authenticator() {
            @Override
            protected PasswordAuthentication getPasswordAuthentication() {
                // 用户名、密码
                String userName = props.getProperty("mail.user");
                String password = props.getProperty("mail.password");
                return new PasswordAuthentication(userName, password);
            }
        };
        // 使用环境属性和授权信息,创建邮件会话
        Session mailSession = Session.getInstance(props, authenticator);
//        mailSession.setDebug(true);
        // 创建邮件消息
        MimeMessage message = new MimeMessage(mailSession);
        try {
        // 设置发件人
        InternetAddress from = new InternetAddress(FROM);
        message.setFrom(from);
        Address[] a = new Address[1];
        a[0] = new InternetAddress(FROM);
        message.setReplyTo(a);
        // 设置收件人
        InternetAddress to = new InternetAddress(email);
        message.setRecipient(MimeMessage.RecipientType.TO, to);
        // 设置邮件标题
        message.setSubject("验证邮件");
        // 设置邮件的内容体
        x = new Random().nextInt(1000000);
        message.setContent("尊敬的用户您好,您的验证码是:"+x+"   请勿告诉别人!!", "text/html;charset=UTF-8");
        // 发送邮件
        Transport.send(message);
        }
        catch (MessagingException e) {
        System.out.println(e);
        logger.info("发送邮件失败,错误是:"+e);
            String err = e.getMessage();
            // 在这里处理message内容, 格式是固定的
            System.out.println(err);
        }
        System.out.println(x);
        logger.info("发送邮件成功,验证码是:"+x);
return x;
    }
}

然后调用这个工具类就能给人发送邮箱验证了,然后邮箱验证每天有200条免费。

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值