摘要:在很多服務(wù)中我經(jīng)常需要用到發(fā)送郵件功能,所幸的是可以快速使用的框架,只要引入改框架我們可以快速的完成發(fā)送郵件功能。引入獲取郵件發(fā)送服務(wù)器配置在國(guó)內(nèi)用的最多的就是郵件和網(wǎng)易郵件,這里會(huì)簡(jiǎn)單講解獲取兩家服務(wù)商的發(fā)送郵件配置。
在很多服務(wù)中我經(jīng)常需要用到發(fā)送郵件功能,所幸的是SpringBoot可以快速使用的框架spring-boot-starter-mail,只要引入改框架我們可以快速的完成發(fā)送郵件功能。引入mailJar
獲取郵件發(fā)送服務(wù)器配置org.springframework.boot spring-boot-starter-mail
在國(guó)內(nèi)用的最多的就是QQ郵件和網(wǎng)易163郵件,這里會(huì)簡(jiǎn)單講解獲取兩家服務(wù)商的發(fā)送郵件配置。
QQ郵箱等錄QQ郵箱,點(diǎn)擊設(shè)置然后選擇賬戶在下方可以看到POP3/IMAP/SMTP/Exchange/CardDAV/CalDAV服務(wù),然后我們需要把smtp服務(wù)開啟,開啟成功后會(huì)得到一個(gè)秘鑰。如圖所示:
開啟成功需要在application.properties配置文件中加入相應(yīng)的配置,以下信息部分需要替換為自己的信息,教程結(jié)束下面的賬號(hào)就會(huì)被停用
spring.mail.host=smtp.qq.com [email protected] # 替換為自己的QQ郵箱號(hào) spring.mail.password=owqpkjmqiasnbigc # 替換為自己的秘鑰或授權(quán)碼 spring.mail.port=465 spring.mail.properties.mail.smtp.auth=true spring.mail.properties.mail.smtp.starttls.enable=true spring.mail.properties.mail.smtp.starttls.required=true # sender [email protected] # 替換為自己的QQ郵箱號(hào)163郵箱
登錄賬戶然后在設(shè)置找到POP3/SMTP/IMAP選項(xiàng),然后開啟smtp服務(wù),具體操作如下圖所示,然后修改對(duì)應(yīng)的配置文件
spring.mail.host=smtp.163.com [email protected] # 替換為自己的163郵箱號(hào) spring.mail.password=owqpkj163MC # 替換為自己的授權(quán)碼 spring.mail.port=465 spring.mail.properties.mail.smtp.auth=true spring.mail.properties.mail.smtp.starttls.enable=true spring.mail.properties.mail.smtp.starttls.required=true # sender [email protected] # 替換為自己的163郵箱號(hào)實(shí)現(xiàn)簡(jiǎn)單發(fā)送郵件
這里發(fā)送郵件我們主要用到的是JavaMailSender對(duì)象,發(fā)送簡(jiǎn)單郵件主要是發(fā)送字符串內(nèi)容,復(fù)雜的郵件我們可能會(huì)添加附件或者是發(fā)送HTML格式的郵件,我們先測(cè)試簡(jiǎn)單的發(fā)送,代碼如下:
override fun sendSimple(receiver: String, title: String, content: String) { logger.info("發(fā)送簡(jiǎn)單郵件服務(wù)") val message = mailSender.createMimeMessage() val helper = MimeMessageHelper(message, true) helper.setFrom(sender) helper.setTo(receiver) helper.setSubject(title) helper.setText(content) mailSender.send(message) }
測(cè)試代碼
@RunWith(SpringJUnit4ClassRunner::class) @SpringBootTest class MailServiceImplTest { @Autowired lateinit var mailService: MailService @Test fun sendSimple() { mailService.sendSimple("[email protected]", "Hello Kotlin Mail", "SpringBoot Kotlin 專欄學(xué)習(xí)之JavaMailSender發(fā)送郵件") } }
檢查郵件是否收到發(fā)送的內(nèi)容
我們這里用的HTML模板引擎是thymeleaf,大家需要引入一下spring-boot-starter-thymeleaf
org.springframework.boot spring-boot-starter-thymeleaf
有個(gè)地方需要注意,SpringBoot項(xiàng)目默認(rèn)靜態(tài)資源都是放在resources/templates目錄下,所以我們編寫的HTML模板就需要放在該目錄下,具體內(nèi)容如下:
Title Demo
xxx
發(fā)送模板郵件主要實(shí)現(xiàn)代碼
override fun sendMail(receiver: String, title: String, o: Any, templateName: String) { logger.info("開始發(fā)送郵件服務(wù),To:{}", receiver) val message = mailSender.createMimeMessage() val helper = MimeMessageHelper(message, true) helper.setFrom(sender) helper.setTo(receiver) helper.setSubject(title) val context = Context() context.setVariable("title", title) /* * 設(shè)置動(dòng)態(tài)數(shù)據(jù),這里不建議強(qiáng)轉(zhuǎn),具體業(yè)務(wù)需求傳入具體的對(duì)象 */ context.setVariables(o as MutableMap?) /* * 讀取取模板html代碼并賦值 */ val content = templateEngine.process(templateName, context) helper.setText(content, true) mailSender.send(message) logger.info("郵件發(fā)送結(jié)束") }
測(cè)試代碼
@Test fun sendMail() { val model = HashMap() model["name"] = "Tom" model["phone"] = "69288888" mailService.sendMail("[email protected]", "Kotlin Template Mail", model, "mail") }
查看郵件我們可以看到如下內(nèi)容:
附件的添加也是非常容易的,我需要先把發(fā)送的附件放在resources/templates目錄下,然后在MimeMessageHelper對(duì)象中設(shè)置相應(yīng)的屬性即可,如下所示:
helper.addAttachment("test.txt", FileSystemResource(File("test.txt")))完整的代碼
package io.intodream.kotlin06.service.impl import io.intodream.kotlin06.service.MailService import org.slf4j.Logger import org.slf4j.LoggerFactory import org.springframework.beans.factory.annotation.Autowired import org.springframework.beans.factory.annotation.Value import org.springframework.core.io.FileSystemResource import org.springframework.mail.javamail.JavaMailSender import org.springframework.mail.javamail.MimeMessageHelper import org.springframework.stereotype.Service import org.thymeleaf.TemplateEngine import org.thymeleaf.context.Context import java.io.File /** * {描述} * * @author [email protected] * @date 2019/4/8 19:19 * */ @Service class MailServiceImpl @Autowired constructor(private var mailSender: JavaMailSender, private var templateEngine: TemplateEngine) : MailService{ val logger : Logger = LoggerFactory.getLogger(MailServiceImpl::class.java) @Value("${email.sender}") val sender: String = "[email protected]" override fun sendSimple(receiver: String, title: String, content: String) { logger.info("發(fā)送簡(jiǎn)單郵件服務(wù)") val message = mailSender.createMimeMessage() val helper = MimeMessageHelper(message, true) helper.setFrom(sender) helper.setTo(receiver) helper.setSubject(title) helper.setText(content) mailSender.send(message) } override fun sendMail(receiver: String, title: String, o: Any, templateName: String) { logger.info("開始發(fā)送郵件服務(wù),To:{}", receiver) val message = mailSender.createMimeMessage() val helper = MimeMessageHelper(message, true) helper.setFrom(sender) helper.setTo(receiver) helper.setSubject(title) val context = Context() context.setVariable("title", title) /* * 設(shè)置動(dòng)態(tài)數(shù)據(jù),這里不建議強(qiáng)轉(zhuǎn),具體業(yè)務(wù)需求傳入具體的對(duì)象 */ context.setVariables(o as MutableMap測(cè)試代碼?) /* * 添加附件 */ helper.addAttachment("test.txt", FileSystemResource(File("test.txt"))) /* * 讀取取模板html代碼并賦值 */ val content = templateEngine.process(templateName, context) helper.setText(content, true) mailSender.send(message) logger.info("郵件發(fā)送結(jié)束") } }
package io.intodream.kotlin06.service.impl import io.intodream.kotlin06.service.MailService import org.junit.Test import org.junit.runner.RunWith import org.springframework.beans.factory.annotation.Autowired import org.springframework.boot.test.context.SpringBootTest import org.springframework.test.context.junit4.SpringJUnit4ClassRunner /** * {描述} * * @author [email protected] * @date 2019/4/9 18:38 */ @RunWith(SpringJUnit4ClassRunner::class) @SpringBootTest class MailServiceImplTest { @Autowired lateinit var mailService: MailService @Test fun sendSimple() { mailService.sendSimple("[email protected]", "Hello Kotlin Mail", "SpringBoot Kotlin 專欄學(xué)習(xí)之JavaMailSender發(fā)送郵件") } @Test fun sendMail() { val model = HashMap() model["name"] = "Tom" model["phone"] = "69288888" mailService.sendMail("[email protected]", "Kotlin Template Mail", model, "mail") } }
關(guān)于Kotlin使用JavaMailSender發(fā)送郵件的介紹就到此結(jié)束了,如果大家覺得教程有用麻煩點(diǎn)一下贊,如果有錯(cuò)誤的地方歡迎指出。
文章版權(quán)歸作者所有,未經(jīng)允許請(qǐng)勿轉(zhuǎn)載,若此文章存在違規(guī)行為,您可以聯(lián)系管理員刪除。
轉(zhuǎn)載請(qǐng)注明本文地址:http://systransis.cn/yun/74106.html
摘要:前景介紹在日常的工作中,我們經(jīng)常會(huì)用到郵件服務(wù),比如發(fā)送驗(yàn)證碼,找回密碼確認(rèn),注冊(cè)時(shí)郵件驗(yàn)證等,所以今天在這里進(jìn)行郵件服務(wù)的一些操作。 前景介紹 在日常的工作中,我們經(jīng)常會(huì)用到郵件服務(wù),比如發(fā)送驗(yàn)證碼,找回密碼確認(rèn),注冊(cè)時(shí)郵件驗(yàn)證等,所以今天在這里進(jìn)行郵件服務(wù)的一些操作。 大致思路 我們要做的其實(shí)就是把Java程序作為一個(gè)客戶端,然后通過配置SMTP協(xié)議去連接我們所使用的發(fā)送郵箱(fr...
摘要:調(diào)用的默認(rèn)構(gòu)造函數(shù),對(duì)象在底層通過使用包下的實(shí)現(xiàn)創(chuàng)建請(qǐng)求,可以通過使用指定不同的請(qǐng)求方式。接口主要提供了兩種實(shí)現(xiàn)方式一種是,使用提供的方式既包提供的方式創(chuàng)建底層的請(qǐng)求連接。 showImg(http://download.qfeoo.com/kotlin_springboot_logo.png); 自從RESTFul API興起后,Spring就給開發(fā)者提供了一個(gè)訪問Rest的客服端,...
摘要:二教程環(huán)境三創(chuàng)建項(xiàng)目創(chuàng)建項(xiàng)目有兩種方式一種是在官網(wǎng)上創(chuàng)建二是在上創(chuàng)建如圖所示勾選然后點(diǎn),然后一直默認(rèn)最后點(diǎn)擊完成即可。我們這里看到和普通的接口沒有異同,除了返回類型是用包裝之外。與之對(duì)應(yīng)的還有,這個(gè)后面我們會(huì)講到。 showImg(https://segmentfault.com/img/remote/1460000018819338?w=1024&h=500); 從去年開始就開始學(xué)習(xí)...
摘要:我拿網(wǎng)易郵箱賬號(hào)舉例子,那么我們?nèi)绾尾拍茏屇愕泥]箱賬號(hào)可以利用第三方發(fā)送郵件這里的第三方就是我們即將編寫的程序。 一 前言 測(cè)試所使用的環(huán)境 測(cè)試使用的環(huán)境是企業(yè)主流的SSM 框架即 SpringMVC+Spring+Mybatis。為了節(jié)省時(shí)間,我直接使用的是我上次的SSM項(xiàng)目中整合Echarts開發(fā)該項(xiàng)目已經(jīng)搭建完成的SSM環(huán)境。 標(biāo)題說的四種姿勢(shì)指的是哪四種姿勢(shì)? 發(fā)送text...
摘要:也就是說用戶先將郵件投遞到騰訊的服務(wù)器這個(gè)過程就使用了協(xié)議,然后騰訊的服務(wù)器將郵件投遞到網(wǎng)易的服務(wù)器這個(gè)過程也依然使用了協(xié)議,服務(wù)器就是用來收郵件。 郵件發(fā)送其實(shí)是一個(gè)非常常見的需求,用戶注冊(cè),找回密碼等地方,都會(huì)用到,使用 JavaSE 代碼發(fā)送郵件,步驟還是挺繁瑣的,Spring Boot 中對(duì)于郵件發(fā)送,提供了相關(guān)的自動(dòng)化配置類,使得郵件發(fā)送變得非常容易,本文我們就來一探究竟!看...
閱讀 2423·2021-08-18 10:21
閱讀 2531·2019-08-30 13:45
閱讀 2161·2019-08-30 13:16
閱讀 2126·2019-08-30 12:52
閱讀 1372·2019-08-30 11:20
閱讀 2632·2019-08-29 13:47
閱讀 1630·2019-08-29 11:22
閱讀 2769·2019-08-26 12:11