溫馨提示×

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

密碼登錄×
登錄注冊(cè)×
其他方式登錄
點(diǎn)擊 登錄注冊(cè) 即表示同意《億速云用戶服務(wù)條款》

Java中怎么通過stmp協(xié)議發(fā)送郵件

發(fā)布時(shí)間:2021-06-11 16:58:17 來源:億速云 閱讀:202 作者:Leah 欄目:編程語(yǔ)言

Java中怎么通過stmp協(xié)議發(fā)送郵件,針對(duì)這個(gè)問題,這篇文章詳細(xì)介紹了相對(duì)應(yīng)的分析和解答,希望可以幫助更多想解決這個(gè)問題的小伙伴找到更簡(jiǎn)單易行的方法。

pom.xml 導(dǎo)入包

<dependency>
      <groupId>org.springframework.boot</groupId>
      <artifactId>spring-boot-starter-mail</artifactId>
      <version>2.1.7.RELEASE</version>
 </dependency>

application.properties 配置信息

## 郵箱配置
#spring.mail.host=smtp.163.com
## 你的163郵箱
#spring.mail.username=18603@163.com
## 注意這里不是郵箱密碼,而是SMTP授權(quán)密碼
#spring.mail.password=*****
#spring.mail.port=25
#spring.mail.default-encoding=UTF-8
#spring.mail.from=18603@163.com

代碼

package com.youjia.found.manager;
import com.youjia.found.common.util.Check;
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.Component;
import javax.annotation.Resource;
import javax.mail.internet.InternetAddress;
import javax.mail.internet.MimeMessage;
import java.io.File;
 
/**
 * <P>郵件處理類</P>
 *
 * @author eric
 * @date 2020/2/6 11:08 AM
 * @since
 */
@Component
public class MailManager {
  
  private final Logger logger = LoggerFactory.getLogger(this.getClass());
  @Value("${spring.mail.from}")
  private String from;
  @Autowired
  private JavaMailSender mailSender;
  
  /**
   * 帶附件的郵件
   * @param to 收件人
   * @param subject 主題
   * @param content 內(nèi)容
   * @param filePath 附件
   */
  public boolean sendMail(String to, String subject, String content, String filePath) {
    logger.info("stmp郵件發(fā)送 to:{}, subject:{}, content:{},filePath:{}", to, subject, content,filePath);
    boolean isOK=false;
    MimeMessage message = mailSender.createMimeMessage();
    try {
      MimeMessageHelper helper = new MimeMessageHelper(message, true);
      helper.setFrom(from);
      //支持多個(gè)收件人
      InternetAddress[] internetAddressTo = InternetAddress.parse(to);
      helper.setTo(internetAddressTo);
      helper.setSubject(subject);
      helper.setText(content, true);
      //附件
      if(Check.notEmpty(filePath)){
        FileSystemResource file = new FileSystemResource(new File(filePath));
        String fileName = filePath.substring(filePath.lastIndexOf(File.separator));
        helper.addAttachment(fileName, file);
      }
      mailSender.send(message);
      isOK= true;
    } catch (Exception e) {
      logger.error(e.getMessage(),e);
      isOK= false;
    }
    
    return isOK;
  }
  
  
}

關(guān)于Java中怎么通過stmp協(xié)議發(fā)送郵件問題的解答就分享到這里了,希望以上內(nèi)容可以對(duì)大家有一定的幫助,如果你還有很多疑惑沒有解開,可以關(guān)注億速云行業(yè)資訊頻道了解更多相關(guān)知識(shí)。

向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI