package com.cn;
import com.cn.service.SendMailService;
import org.junit.jupiter.api.Test;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.boot.test.context.SpringBootTest;
@SpringBootTest
class Springboot23MailApplicationTests {
@Autowired
private SendMailService sendMailService;
@Test
void contextLoads() {
sendMailService.sendMail();
注:此文章仅为笔记,如有侵权等行为,可联系作者删除或修改文章。
使用java mail 发送邮件报错处理com.sun.mail.smtp.SMTPSendFailedException: 501 Mail from address must be same as
使用java mail发送邮件报错处理
意思是:com.sun.mail.smtp.SMTPSendFailedException:来自地址的501邮件必须与授权用户相同
在这个项目里,邮件服务是腾讯企业邮提供的,不支持高权限的用户使用不用的用户作为发件人。所以使用统一的系统账号进行作为发件人。
转载于:https://www.cnblogs.com/jiml/p/9357048.html...
使用者创建的账号,系统会自动分配一个密码,不可直接使用这个密码,否则会出现上述异常,我们要用分配的账号, 通过http://exmail.qq.com/login 这个地址登录,此时会提示更换密码,按照提示更换密码,然后使用新密码就可以正常发送邮件
使用java mail 发送邮件报错处理com.sun.mail.smtp.SMTPSendFailedException: 501 Mail from address must be same as