溫馨提示×

溫馨提示×

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

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

Java實現(xiàn)郵件發(fā)送QQ郵箱帶附件

發(fā)布時間:2020-08-28 16:16:12 來源:腳本之家 閱讀:158 作者:Jc_ 欄目:編程語言

本文實例為大家分享了Java實現(xiàn)郵件發(fā)送QQ郵箱帶附件的具體代碼,供大家參考,具體內(nèi)容如下

添加依賴

<!-- https://mvnrepository.com/artifact/javax.mail/mail -->
 <dependency>
  <groupId>javax.mail</groupId>
  <artifactId>mail</artifactId>
  <version>1.4.7</version>
</dependency>

關(guān)鍵代碼

import java.io.File;
import java.io.UnsupportedEncodingException;
import java.util.Properties;
 
import javax.activation.DataHandler;
import javax.activation.FileDataSource;
import javax.mail.Authenticator;
import javax.mail.BodyPart;
import javax.mail.Message;
import javax.mail.MessagingException;
import javax.mail.NoSuchProviderException;
import javax.mail.PasswordAuthentication;
import javax.mail.Session;
import javax.mail.Transport;
import javax.mail.internet.InternetAddress;
import javax.mail.internet.MimeBodyPart;
import javax.mail.internet.MimeMessage;
import javax.mail.internet.MimeMultipart;
import javax.mail.internet.MimeUtility;
 
/**
 * 郵件發(fā)送工具類 <br/>
 * Author:楊杰超<br/>
 * Date:2020年1月9日 下午12:02:51 <br/>
 * Copyright (c) 2020, yangjiechao@dingtalk.com All Rights Reserved.<br/>
 *
 */
public class SendMail {
 
 /**
  * 想QQ郵箱發(fā)送郵件
  * 
  * @param formMail
  *   發(fā)送人郵箱地址
  * @param descMail
  *   接收人郵箱地址
  * @param subject
  *   郵箱主題
  * @param content
  *   郵箱內(nèi)容
  * @param files
  *   附件列表
  * @param contentType
  *   內(nèi)容格式
  * @param password
  *   SMTP密碼
  * @throws MessagingException
  * @throws UnsupportedEncodingException
  */
 public static void sendQQMail(String formMail, String descMail, String subject, String content, File[] files,
   String contentType, String password) throws MessagingException, UnsupportedEncodingException {
  Properties properties = new Properties();
  properties.setProperty("mail.smtp.host", "smtp.qq.com");
  properties.setProperty("mail.smtp.port", "465");
  properties.setProperty("mail.smtp.auth", "true");
  properties.setProperty("mail.debug", "true");
  properties.setProperty("mail.transport.protocol", "smtp");
  properties.setProperty("mail.smtp.ssl.enable", "true");
  Session session = Session.getInstance(properties, new Authenticator() {
   @Override
   protected PasswordAuthentication getPasswordAuthentication() {
    return new PasswordAuthentication(formMail, password);
   }
  });
  Message message = new MimeMessage(session);
  try {
   message.setFrom(new InternetAddress(formMail));
   message.setRecipient(Message.RecipientType.TO, new InternetAddress(descMail));
   message.setSubject(subject);
 
   // 是否存在附件
   if (null != files && files.length > 0) {
    MimeMultipart multipart = new MimeMultipart();
 
    BodyPart contentPart = new MimeBodyPart();
    contentPart.setContent(content, contentType);
    multipart.addBodyPart(contentPart);
 
    for (File file : files) {
     MimeBodyPart attachment = new MimeBodyPart();
     DataHandler dh3 = new DataHandler(new FileDataSource(file));
     attachment.setDataHandler(dh3);
     attachment.setFileName(MimeUtility.encodeText(dh3.getName()));
     multipart.addBodyPart(attachment);
    }
    multipart.setSubType("mixed");
 
    message.setContent(multipart);
    message.saveChanges();
   }
   // 普通
   else {
    message.setContent(content, contentType);
   }
 
   Transport transport = session.getTransport();
   transport.connect(formMail, password);
   Transport.send(message);
  } catch (UnsupportedEncodingException e) {
   throw e;
  } catch (NoSuchProviderException e) {
   throw e;
  } catch (MessagingException e) {
   throw e;
  }
 
 }
 
 public static void main(String[] args) throws MessagingException, UnsupportedEncodingException {
  // 由哪個郵箱發(fā)送
  String formMail = "********@qq.com";
  // QQ郵箱>設(shè)置>賬戶 開啟POP3/SMTP服務(wù) 查看smtp密碼
  String smtpPassword = "****************";
 
  // 發(fā)送人郵箱地址
  String descMail = "470947852@qq.com";
  String contentType = "text/html;charset=UTF-8";
 
  String subject = "測試郵件發(fā)送,含附件";
  String content = "test send mail, 這里是中文";
  File[] files = new File[2];
  files[0] = new File("C:/test_1.xls");
  files[1] = new File("C:/test_2.xls");
 
  SendMail.sendQQMail(formMail, descMail, subject, content, files, contentType, smtpPassword);
 }
}

以上就是本文的全部內(nèi)容,希望對大家的學(xué)習(xí)有所幫助,也希望大家多多支持億速云。

向AI問一下細節(jié)

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

AI