springboot怎么使用QQ邮箱发送邮件

springboot怎么使用QQ邮箱发送邮件

小编给大家分享一下springboot怎么使用QQ邮箱发送邮件,相信大部分人都还不怎么了解,因此分享这篇文章给大家参考一下,希望大家阅读完这篇文章后大有收获,下面让我们一起去了解一下吧!

一、QQ邮箱打开POP3/SMTP服务



上面的服务开启后,会得到一串授权密码在springboot配置中需要用到

二、springboot配置

IDE目录

1.在pom.xml添加spring-boot-starter-mail起步依赖

<!--springboot开发mail项目的起步依赖--><dependency><groupId>org.springframework.boot</groupId><artifactId>spring-boot-starter-mail</artifactId></dependency>

2.在application.properties中配置mail属性

#静态资源映射,localhost:8080/==/resourcesspring.resources.static-locations=classpath:META-INF/resources/,classpath:static/,classpath:templates/#https://blog.csdn.net/jawhiow/article/details/82625842#如果原先访问首页的地址是:http://localhost:8888/index.html那么在你配置这个配置后,http://localhost:8888/default/index.htmlspring.mvc.static-path-pattern=/*#设置邮箱主机spring.mail.host=smtp.qq.com#设置用户名spring.mail.username=xxxxxx@qq.com#设置密码,该处的密码是QQ邮箱开启SMTP的授权码而非QQ密码spring.mail.password=xxxxxx#设置是否需要认证,如果为true,那么用户名和密码就必须的,#如果设置false,可以不设置用户名和密码,当然也得看你的对接的平台是否支持无密码进行访问的。spring.mail.properties.mail.smtp.auth=true#STARTTLS[1]是对纯文本通信协议的扩展。它提供一种方式将纯文本连接升级为加密连接(TLS或SSL),而不是另外使用一个端口作加密通信。spring.mail.properties.mail.smtp.starttls.enable=truespring.mail.properties.mail.smtp.starttls.required=truespring.mail.properties.mail.smtp.ssl.enable=truespring.mail.port=465

3.编写controller文件

@ControllerpublicclassEmailController{@AutowiredprivateJavaMailSenderjavaMailSender;@RequestMapping("/")publicvoidindex(HttpServletRequestrequest,HttpServletResponseresponse)throwsIOException{System.out.println("index.html");response.sendRedirect("/index.html");}@ResponseBody@RequestMapping("/emailSend")publicStringemailSend(@RequestParam(value="email")Stringeamil){System.out.println(eamil);Stringcontent="1234";try{SimpleMailMessagemessage=newSimpleMailMessage();message.setFrom("xxxxxx@qq.com");message.setTo(eamil);message.setSubject("主题:主题内容");message.setText(content);//发送邮件javaMailSender.send(message);System.out.println(eamil+"发送成功");}catch(Exceptione){return"fail";}return"success";}}

4.编写网页页面

<!DOCTYPEhtml><htmllang="en"><head><metacharset="UTF-8"><title>邮件</title></head><body><formaction="/emailSend">邮箱:<inputtype="text"name="email"value="xxxxxx@qq.com"><inputtype="submit"></form></body></html>

5.发送成功


以上是“springboot怎么使用QQ邮箱发送邮件”这篇文章的所有内容,感谢各位的阅读!相信大家都有了一定的了解,希望分享的内容对大家有所帮助,如果还想学习更多知识,欢迎关注恰卡编程网行业资讯频道!

发布于 2022-03-03 21:26:21
收藏
分享
海报
0 条评论
43
上一篇:SpringBoot使用Async注解失效怎么办 下一篇:Python如何使用turtle和tkinter让小海龟互动起来
目录

    0 条评论

    本站已关闭游客评论,请登录或者注册后再评论吧~

    忘记密码?

    图形验证码