springboot发送qq邮件,email

欢迎添加微信交流Java问题:17625089935

pom

<!--邮件-->
<dependency>
   <groupId>org.springframework.boot</groupId>
   <artifactId>spring-boot-starter-mail</artifactId>
</dependency>

配置文件: 

# 字符集编码 默认 UTF-8
spring.mail.default-encoding=UTF-8
# SMTP 服务器 host qq邮箱的为 smtp.qq.com 端口 465 587
spring.mail.host=smtp.qq.com
# SMTP 服务器端口 不同的服务商不一样
spring.mail.port=465
# SMTP 服务器使用的协议
spring.mail.protocol=smtp
#发送者的邮箱账号
spring.mail.username=1263944101@qq.com
#发送者的邮箱密码
spring.mail.password=qhqgurcvrcpkicff
#开启ssl
spring.mail.properties.mail.smtp.ssl.enable=true
package nbpt.ts.zhaf.util.email;

import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.beans.factory.annotation.Value;
import org.springframework.mail.SimpleMailMessage;
import org.springframework.mail.javamail.JavaMailSender;
import org.springframework.stereotype.Component;

@Component
public class EmailUtil {


    private static JavaMailSender javaMailSender;


    private static String from;

    @Value("${spring.mail.username}")
    private void setFrom(String from) {
        this.from = from;
    }

    /**
     *
     * @param to 发送给谁
     * @param title 标题
     * @param text 内容
     */
    public static void sendMail(String to, String title, String text) {
        SimpleMailMessage message = new SimpleMailMessage();
        message.setFrom(from);
        message.setTo(to);
        message.setSubject(title);
        message.setText(text);
        javaMailSender.send(message);
    }

    @Autowired
    public EmailUtil(JavaMailSender javaMailSender) {
        this.javaMailSender = javaMailSender;
    }
}

使用:

EmailUtil.sendMail("发送目标qq邮箱地址", "标题","内容");

 

评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值