springboot实践,开发社区登录模块今日份开启 发送邮件三个步骤:
1、邮箱设置
首先需要注册一个新浪邮箱 18215626061@sina.cn
然后进入设置开启pop3/smtp服务,务必记住授权码
左下角点开启
2、spring email
导入jar包
1
2
3
4
5
|
<dependency> <groupid>org.springframework.boot</groupid> <artifactid>spring-boot-starter-mail</artifactid> <version> 2.4 . 4 </version> </dependency> |
然后在idea中的application中配置邮箱的相关设置
可以创建.properties也可以创建.yaml。分别如下:
此处password为授权码 有的邮箱的密码需要隐匿的设置为授权码,否则会错误,这里不用授权码的话可以换回密码。
这里我们创建一个util包,然后创建mailclient类,这里因为发邮件的时候是要委托新浪邮箱,所以这里是一个client类。来进行委托的业务处理。
此处用到的最关键的核心组件是:
javamailsender
javamailsender
javamailsender
我自己记不住,所以多些几遍加深记忆。 java实现发送email用到的是与邮件发送相关的类,那么就是mailsender类。
发送邮件涉及的关键字:发送人,发送到哪里(to),邮件主题,还有邮件内容。分别用(from,to,subject,context)表示。
javamailsender的源码如下
可以看到第一步是有一个mimemessage所以看如下代码
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
@component public class mailclient { private staticfinal logger logger= loggerfactory.getlogger(mailclient. class ); @autowired private javamailsender javamailsender; @value ( "${spring.mail.username}" ) private string from; public voidsendmail(string to,string subject,string context){ try { mimemessage message= javamailsender.createmimemessage(); mimemessagehelper helper = new mimemessagehelper(message); helper.setfrom(from); helper.setto(to); helper.setsubject(subject); helper.settext(context, true ); //不加true表示是默认文本,加了true表示支持html文本 javamailsender.send(helper.getmimemessage()); } catch (messagingexception e) { logger.error( "发送邮件失败" +e.getmessage()); } } } |
测试类
1
2
3
4
5
6
7
8
9
10
11
|
@runwith (springrunner. class ) @springboottest @contextconfiguration (classes = communityapplication. class ) public class mailtests { @autowired private mailclient mainclient; @test public void testtextmail(){ mainclient.sendmail( "596844484@qq.com" , "java yyds" , "welcome" ); } } |
然后果不其然出现了错误
然后果不其然出现了错误
然后果不其然出现了错误
产生这个错误的原因去查了查是因为授权码的问题,解决这个问题可以阅读文章末尾补充文章
然后经过种种我把新浪微博换成了网易163的邮箱
并按照解决办法去修改。测试成功
3、使用thymeleaf模板发送html文本
先写一个html文件
附上代码
1
2
3
4
5
6
7
8
9
10
11
|
@autowired private templateengine templateengine; @test //注意这里的context 是thymeleaf下的 public void testtextmailhtml(){ context context= new context(); context.setvariable( "username" , "小傻瓜" ); //从这里取值 string process = templateengine.process( "/mail/demo" , context); system.out.println(process); mailclient.sendmail( "18215626061@sina.com" , "java yyds" , "welcome" ); } |
下面让我们想一想开始发邮箱时的为什么会报错。
报错信息如下图:
查了查资料,才发现,如果是163邮箱发送邮件,password配置的需要是163的授权码。如下图:
这样就解决了报错问题。
以上就是使用javamailsender发送邮箱的过程。欢迎各位读者指正。更多关于java的资料请关注服务器之家其它相关文章!,希望大家以后多多支持服务器之家!
原文链接:https://blog.csdn.net/qq_42674604/article/details/115640044