时间:2021-05-20
SpringBoot 集成 E-mail发送邮件,供大家参考,具体内容如下
JDK本身有自带发送邮件api,加上SpringBoot在进行封装,使得现在使用起来十分快速简洁。
话不多说,参考纯洁的微笑博客,更改jar版本为2.0.4 开干,基本没什么坑。
就是配置邮箱账号密码是,如果是qq邮箱,需要开启PO30和STMP服务,并且获取临时授权码。
开启服务链接:
https://mail.qq.com/cgi-bin/frame_html?sid=a5ZSbreeNm9pHyl1&r=a83225170e94773c650a460c10f7a05c
与Springboot集成
导入jar包
compile group: 'org.springframework.boot', name: 'spring-boot-starter-mail', version: '2.0.4.RELEASE'compile 'org.springframework.boot:spring-boot-starter-thymeleaf:2.0.4.RELEASE'配置邮箱
#邮箱服务器地址,各大运营商不同spring.mail.host=smtp.qq.com#用户名spring.mail.username=9118542413@qq.com#密码,如果是qq的,要申请临时授权码spring.mail.password=faw124awfawfawgspring.mail.default-encoding=UTF-8#以谁来发送邮件mail.fromMail.addr=9118542413@qq.com发送各种类型的邮件
@Service@Slf4jpublic class MailServiceImpl implements MailService { @Autowired private JavaMailSender mailSender; /** * The Template engine. */ @Autowired TemplateEngine templateEngine; @Value("${mail.fromMail.addr}") private String from; @Override public void sendSimpleMail(String to, String subject, String content) { SimpleMailMessage message = new SimpleMailMessage(); message.setFrom(from); message.setTo(to); message.setSubject(subject); message.setText(content); try { mailSender.send(message); log.info("简单邮件已经发送。"); } catch (Exception e) { log.error("发送简单邮件时发生异常!", e); } } @Override public void sendHtmlMail(String to, String subject, String content) { MimeMessage message = mailSender.createMimeMessage(); try { //true表示需要创建一个multipart message MimeMessageHelper helper = new MimeMessageHelper(message, true); helper.setFrom(from); helper.setTo(to); helper.setSubject(subject); helper.setText(content, true); mailSender.send(message); log.info("html邮件发送成功"); } catch (MessagingException e) { log.error("发送html邮件时发生异常!", e); } } @Override public void sendAttachmentsMail(String to, String subject, String content, String filePath) { MimeMessage message = mailSender.createMimeMessage(); try { MimeMessageHelper helper = new MimeMessageHelper(message, true); helper.setFrom(from); helper.setTo(to); helper.setSubject(subject); helper.setText(content, true); FileSystemResource file = new FileSystemResource(new File(filePath)); String fileName = filePath.substring(filePath.lastIndexOf(File.separator) + 1); helper.addAttachment(fileName, file); mailSender.send(message); log.info("带附件的邮件已经发送。"); } catch (MessagingException e) { log.error("发送带附件的邮件时发生异常!", e); } } @Override public void sendInlineResourceMail(String to, String subject, String content, String rscPath, String rscId) { MimeMessage message = mailSender.createMimeMessage(); try { MimeMessageHelper helper = new MimeMessageHelper(message, true); helper.setFrom(from); helper.setTo(to); helper.setSubject(subject); helper.setText(content, true); FileSystemResource res = new FileSystemResource(new File(rscPath)); helper.addInline(rscId, res); mailSender.send(message); log.info("嵌入静态资源的邮件已经发送。"); } catch (MessagingException e) { log.error("发送嵌入静态资源的邮件时发生异常!", e); } } @Override public void sendTemplateMail(String to, String subject, String template, Context context) { String emailContent = templateEngine.process(template, context); sendHtmlMail("15017263512@163.com", "主题:这是模板邮件", emailContent); }}测试类:
@RunWith(SpringRunner.class)@SpringBootTestpublic class EmailServiceTest { @Autowired MailService mailService; @Test public void sendSimpleMailTest() { mailService.sendSimpleMail("15017263512@163.com","test simple mail"," hello this is simple mail"); } @Test public void sendHtmlMailTest(){ String content="<html>\n" + "<body>\n" + " <h3>hello world ! 这是一封Html邮件!</h3>\n" + "</body>\n" + "</html>"; mailService.sendHtmlMail("15017263512@163.com","test html mail",content); } @Test public void sendAttachmentsMail(){ String filePath="E:\\var\\log\\elkTest\\error\\2018-11-30.log"; mailService.sendAttachmentsMail("15017263512@163.com", "主题:带附件的邮件", "有附件,请查收!", filePath); } @Test public void sendInlineResourceMail() { String rscId = "neo006"; String content="<html><body>这是有图片的邮件:<img src=\'cid:" + rscId + "\' ></body></html>"; String imgPath = "C:\\Users\\Admin\\Pictures\\Camera Roll\\9499189867_1476052069.jpg"; mailService.sendInlineResourceMail("15017263512@163.com", "主题:这是有图片的邮件", content, imgPath, rscId); } @Test public void sendTemplateMail() { //创建邮件正文 Context context = new Context(); context.setVariable("id", "006"); mailService.sendTemplateMail("15017263512@163.com","主题:这是模板邮件", "emailTemplate",context); }}上面的邮箱和密码是我乱填的,注意自己更改。
项目源码以上传至GitHub
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持。
声明:本页内容来源网络,仅供用户参考;我单位不保证亦不表示资料全面及准确无误,也不保证亦不表示这些资料为最新信息,如因任何原因,本网内容或者用户因倚赖本网内容造成任何损失或损害,我单位将不会负任何法律责任。如涉及版权问题,请提交至online#300.cn邮箱联系删除。
本文实例讲述了php使用SAE原生Mail类实现各种类型邮件发送的方法。分享给大家供大家参考,具体如下:用过SAE的都知道,SAE所有服务中,就数Mail服务最
通过Internet发送或接收电子邮件E-mail的首要条件是应该有一个电子邮件E-mail地址,它的正确格式是用户名@域名。 电子邮件是―种用电子手段提供信
formmail.htm复制代码代码如下:提交表单发送邮件姓 名:性 别:男女年 龄:*联系电话:*E-mail:*定票:定餐:定
ipad电子邮件是电子邮件地址,发送和接收服务器一般会自动添加,如果没自动添加就去邮件供应商网站上查一下。 电子邮件(email、e-mail),简称电邮,是
email类型:用于输入电子邮件地址,当提交表单时,会自动检测输入内容是否符合电子邮件格式,如果不符合,将给出错误提示。例如:E-mail:。