当前位置:   article > 正文

java操作邮件带附件发送_javamailsender发送附件

javamailsender发送附件

文章目录


邮件带附件发送

原文链接 https://zhhll.icu/2023/第三方工具/邮件/1.邮件带附件发送/
依赖

<dependency>
    <groupId>org.apache.commons</groupId>
    <artifactId>commons-email</artifactId>
    <version>1.5</version>
</dependency>
<dependency>
  <groupId>org.springframework</groupId>
  <artifactId>spring-context-support</artifactId>
  <version>4.3.29.RELEASE</version>
</dependency>
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10

有时候发送邮件需要带有附件,可以使用MimeMessageHelper来进行发送附件

JavaMailSenderImpl sender = new JavaMailSenderImpl();
sender.setHost("smtp.exmail.qq.com");
sender.setPort(587); // 默认就是25
sender.setUsername("username");
sender.setPassword("password");
sender.setDefaultEncoding("UTF-8");

// 配置文件对象
Properties props = new Properties();
props.put("mail.smtp.auth", "true"); // 是否进行验证
props.put("mail.smtp.starttls.enable", "true");
props.put("mail.smtps.ssl.checkserveridentity", "true");
props.put("mail.smtps.ssl.trust", "*");
Session session = Session.getInstance(props);
sender.setSession(session);

MimeMessage mail = sender.createMimeMessage();

MimeMessageHelper helper;
try {
    // 开启发送文件
    helper = new MimeMessageHelper(mail,true);
} catch (MessagingException e) {
    return false;
}


try {
    helper.setTo(to); // 发送给谁
    helper.setCc(cc); // 抄送
    helper.setSubject(title); // 标题
    helper.setFrom("username"); // 来自
    // 邮件内容,第二个参数指定发送的是HTML格式
    helper.setText(textBody, true);
    // 发送附件
    helper.addAttachment(file.getName(),file);
    sender.send(mail); // 发送
}catch(Exception e) {
}

  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
  • 32
  • 33
  • 34
  • 35
  • 36
  • 37
  • 38
  • 39
  • 40
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/Gausst松鼠会/article/detail/591796
推荐阅读
相关标签
  

闽ICP备14008679号