代码拉取完成,页面将自动刷新
同步操作将从 编程界的小学生/common-boot-email 强制同步,此操作会覆盖自 Fork 仓库以来所做的任何修改,且无法恢复!!!
确定后同步将在后台操作,完成时将刷新页面,请耐心等待。
SpringBoot发送邮件神器,只需简单配置即可,支持自定义模板。
SpringBoot+spring-boot-starter-mail +spring-boot-starter-thymeleaf
text普通文本发送(MailContentTypeEnum.TEXT)
@Autowired
private MailBiz mailBiz;
public void sendMail() {
mailBiz
.contentType(MailContentTypeEnum.TEXT)
.title("测试")
.to("1104399635@qq.com")
.content("测试content")
.send();
}
html格式发送(MailContentTypeEnum.HTML)
@Autowired
private MailBiz mailBiz;
public void sendMail() {
mailBiz
.contentType(MailContentTypeEnum.HTML)
.title("测试")
.to("1104399635@qq.com")
.content("<h1>测试content</h1>")
.send();
}
自定义模板发送(MailContentTypeEnum.TEMPLATE)
@Autowired
private MailBiz mailBiz;
public void sendMail() {
Map<String, Object> params = new HashMap<>();
params.put("href", "http://www.baidu.com");
mailBiz
.contentType(MailContentTypeEnum.TEMPLATE)
.title("测试")
.to("1104399635@qq.com")
.content("测试content")
.templateName("regist-template")
.maps(params)
.send();
}
/**
* @Description: 模板名称枚举
*
* @author TongWei.Chen 2018-6-19 10:54:35
* @Project tucaole
*/
public enum EmailTemplateEnum {
/**
* 注册模板
*/
REGIST_TEMPLATE("regist-template")
;
EmailTemplateEnum(String value) {
this.value = value;
}
private String value;
public String value() {
return value;
}
}
我有个xxx-common-email模块,将所有email模板都放到了resources/templates/里。
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。