91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

基于SpringBoot如何實現發送帶附件的郵件

發布時間:2021-05-24 11:35:23 來源:億速云 閱讀:642 作者:小新 欄目:編程語言

這篇文章給大家分享的是有關基于SpringBoot如何實現發送帶附件的郵件的內容。小編覺得挺實用的,因此分享給大家做個參考,一起跟隨小編過來看看吧。

<!--發送email依賴-->
    <dependency>
      <groupId>org.springframework.boot</groupId>
      <artifactId>spring-boot-starter-mail</artifactId>
    </dependency>

service

package com.ykmimi.job.service;
import org.springframework.stereotype.Service;
import java.util.Map;
@Service
public interface MailService {
  /**
   * TODO 發送帶附件的郵件 , 需要進行重載方法
   */
  Map<String, Object> sendAttachmentsMail(String to, String subject, String content, String filePath);
}

service實現

package com.ykmimi.job.service.impl;

import com.ykmimi.job.service.MailService;
import org.springframework.beans.factory.annotation.Value;
import org.springframework.mail.javamail.JavaMailSender;
import org.springframework.mail.javamail.MimeMessageHelper;
import org.springframework.stereotype.Service;
import org.springframework.util.ResourceUtils;

import javax.annotation.Resource;
import javax.mail.MessagingException;
import javax.mail.internet.MimeMessage;
import java.io.File;
import java.io.FileNotFoundException;
import java.util.HashMap;
import java.util.Map;

@Service
public class MailServiceImpl implements MailService {

  @Resource
  private JavaMailSender mailSender;
  //發送者
  @Value("${mail.fromMail.addr}")
  private String from;

  //TODO 設置發送郵件重載方式


  @Override
  public Map<String, Object> sendAttachmentsMail(String to, String subject, String content, String filePath) {

    System.out.println("in sendAttachmentsMail");
    System.out.println(filePath);
    MimeMessage message = mailSender.createMimeMessage();
    Map<String, Object> map = new HashMap<>();

    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));
      // 發送附件
      File file = new File(filePath);
      file = ResourceUtils.getFile(file.getAbsolutePath());
      String fileName = filePath.substring(filePath.lastIndexOf(File.separator));
//      String fileName = filePath.substring(filePath.lastIndexOf("/"));
//      String fileName = "附件";
      System.out.println(fileName);
      //添加多個附件可以使用多條 helper.addAttachment(fileName,file);
      //helper.addAttachment(fileName,file);
      helper.addAttachment(fileName, file);
      mailSender.send(message);
      map.put("code", 1);
      map.put("message", "發送成功");
      return map;
    } catch (MessagingException e) {
      e.printStackTrace();
      map.put("code",0);
      map.put("message","發送失敗");
      return map;
    } catch (FileNotFoundException e) {
      e.printStackTrace();
      map.put("code",-1);
      map.put("message","沒有文件");
      return map;
    } finally {
    }
  }
}

或將郵件內容及郵件地址等封裝為EmailContent的bean實體

通過Controll而接受.

下面是我的郵件主機配置,大家可以拿去用

##上傳文件限制大小
spring.servlet.multipart.max-file-size=10MB
spring.servlet.multipart.max-request-size=10MB
##發送email設置
spring.application.name=spring-boot-mail
spring.mail.host=smtp.126.com
spring.mail.username=hostinbj@126.com
spring.mail.password=1314520jy
spring.mail.default-encoding=UTF-8
##郵件主機地址
mail.fromMail.addr=hostinbj@126.com
spring.mail.properties.mail.smtp.socketFactory.class=javax.net.ssl.SSLSocketFactory
#郵件端口
spring.mail.properties.mail.smtp.socketFactory.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

感謝各位的閱讀!關于“基于SpringBoot如何實現發送帶附件的郵件”這篇文章就分享到這里了,希望以上內容可以對大家有一定的幫助,讓大家可以學到更多知識,如果覺得文章不錯,可以把它分享出去讓更多的人看到吧!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

荥经县| 类乌齐县| 朝阳区| 扶余县| 米脂县| 青冈县| 安乡县| 渑池县| 新河县| 宜兰县| 县级市| 广德县| 子长县| 杭州市| 陆良县| 广灵县| 大冶市| 云南省| 巴林右旗| 水富县| 巴楚县| 万荣县| 柘荣县| 理塘县| 财经| 家居| 尖扎县| 科技| 双柏县| 防城港市| 泗水县| 静乐县| 子洲县| 江门市| 陆河县| 鄂尔多斯市| 葵青区| 郴州市| 邢台县| 罗定市| 科技|