Home Java javaTutorial Java implements a successful case of sending emails from 163 mailbox to qq mailbox

Java implements a successful case of sending emails from 163 mailbox to qq mailbox

Jan 16, 2017 am 09:57 AM

下载和上传附件、发送短信和发送邮件,都算是程序中很常用的功能,之前记录了文件的上传和下载还有发送短信,由于最近比较忙,邮件发送的功能就没有时间去弄,现在终于成功以163邮箱发送邮件到qq邮箱,以下是相关代码,具体解释可以参考代码中注释: 

package test; 
  
import java.util.ArrayList; 
import java.util.Date; 
import java.util.List; 
import java.util.Properties; 
import java.util.regex.Matcher; 
import java.util.regex.Pattern; 
import javax.mail.Address; 
import javax.mail.Authenticator; 
import javax.mail.BodyPart; 
import javax.mail.Message; 
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 com.sun.mail.util.MailSSLSocketFactory; 
  
///** 
// * 
// * @author tuzongxun123 
// * @Description 邮件发送测试类 
// */ 
public class sendMailTest { 
 public static void main(String[] args) throws Exception { 
  // 配置信息 
  Properties pro = new Properties(); 
  pro.put("mail.smtp.host", "smtp.163.com"); 
  pro.put("mail.smtp.auth", "true"); 
  // SSL加密 
  MailSSLSocketFactory sf = null; 
  sf = new MailSSLSocketFactory(); 
  // 设置信任所有的主机 
  sf.setTrustAllHosts(true); 
  pro.put("mail.smtp.ssl.enable", "true"); 
  pro.put("mail.smtp.ssl.socketFactory", sf); 
  // 根据邮件的会话属性构造一个发送邮件的Session,这里需要注意的是用户名那里不能加后缀,否则便不是用户名了 
  //还需要注意的是,这里的密码不是正常使用邮箱的登陆密码,而是客户端生成的另一个专门的授权码 
  MailAuthenticator authenticator = new MailAuthenticator("tuzongxun123", 
    "客户端授权码"); 
  Session session = Session.getInstance(pro, authenticator); 
  // 根据Session 构建邮件信息 
  Message message = new MimeMessage(session); 
  // 创建邮件发送者地址 
  Address from = new InternetAddress("tuzongxun123@163.com"); 
  // 设置邮件消息的发送者 
  message.setFrom(from); 
  // 验证收件人邮箱地址 
  List<String> toAddressList = new ArrayList<>(); 
  toAddressList.add("1160569243@qq.com"); 
  StringBuffer buffer = new StringBuffer(); 
  if (!toAddressList.isEmpty()) { 
   String regEx = "^([a-z0-9A-Z]+[-|\\.]?)+[a-z0-9A-Z]@([a-z0-9A-Z]+(-[a-z0-9A-Z]+)?\\.)+[a-zA-Z]{2,}$"; 
   Pattern p = Pattern.compile(regEx); 
   for (int i = 0; i < toAddressList.size(); i++) { 
    Matcher match = p.matcher(toAddressList.get(i)); 
    if (match.matches()) { 
     buffer.append(toAddressList.get(i)); 
     if (i < toAddressList.size() - 1) { 
      buffer.append(","); 
     } 
    } 
   } 
  } 
  String toAddress = buffer.toString(); 
  if (!toAddress.isEmpty()) { 
   // 创建邮件的接收者地址 
   Address[] to = InternetAddress.parse(toAddress); 
   // 设置邮件接收人地址 
   message.setRecipients(Message.RecipientType.TO, to); 
   // 邮件主题 
   // message.setSubject("java邮件测试"); 
   message.setSubject("为什么错了"); 
   // 邮件容器 
   MimeMultipart mimeMultiPart = new MimeMultipart(); 
   // 设置HTML 
   BodyPart bodyPart = new MimeBodyPart(); 
   // 邮件内容 
   // String htmlText = "java邮件测试111"; 
   String htmlText = "为什么错了"; 
   bodyPart.setContent(htmlText, "text/html;charset=utf-8"); 
   mimeMultiPart.addBodyPart(bodyPart); 
   // 添加附件 
   List<String> fileAddressList = new ArrayList<String>(); 
   fileAddressList 
     .add("C:\\Users\\tuzongxun123\\Desktop\\新建 Microsoft Office Word 文档.docx"); 
   if (fileAddressList != null) { 
    BodyPart attchPart = null; 
    for (int i = 0; i < fileAddressList.size(); i++) { 
     if (!fileAddressList.get(i).isEmpty()) { 
      attchPart = new MimeBodyPart(); 
      // 附件数据源 
      DataSource source = new FileDataSource( 
        fileAddressList.get(i)); 
      // 将附件数据源添加到邮件体 
      attchPart.setDataHandler(new DataHandler(source)); 
      // 设置附件名称为原文件名 
      attchPart.setFileName(MimeUtility.encodeText(source 
        .getName())); 
      mimeMultiPart.addBodyPart(attchPart); 
     } 
    } 
   } 
   message.setContent(mimeMultiPart); 
   message.setSentDate(new Date()); 
   // 保存邮件 
   message.saveChanges(); 
   // 发送邮件 
   Transport.send(message); 
  } 
 } 
} 
  
class MailAuthenticator extends Authenticator { 
  
 /** 
  * 用户名 
  */
 private String username; 
 /** 
  * 密码 
  */
 private String password; 
  
 /** 
  * 创建一个新的实例 MailAuthenticator. 
  * 
  * @param username 
  * @param password 
  */
 public MailAuthenticator(String username, String password) { 
  this.username = username; 
  this.password = password; 
 } 
  
 public String getPassword() { 
  return password; 
 } 
  
 @Override
 protected PasswordAuthentication getPasswordAuthentication() { 
  return new PasswordAuthentication(username, password); 
 } 
  
 public String getUsername() { 
  return username; 
 } 
  
 public void setPassword(String password) { 
  this.password = password; 
 } 
  
 public void setUsername(String username) { 
  this.username = username; 
 } 
  
}
Copy after login

注:我有个同事使用我这个代码更换为他的账号和客户端授权码后,一运行就报错,然后重置了一下邮箱的客户端授权码后,错误便消失了。

以上就是本文的全部内容,希望对大家学习java程序设计有所帮助。

更多java实现163邮箱发送邮件到qq邮箱成功案例相关文章请关注PHP中文网!

Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

Video Face Swap

Video Face Swap

Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

How to elegantly obtain entity class variable names to build database query conditions? How to elegantly obtain entity class variable names to build database query conditions? Apr 19, 2025 pm 11:42 PM

When using MyBatis-Plus or other ORM frameworks for database operations, it is often necessary to construct query conditions based on the attribute name of the entity class. If you manually every time...

How to simplify field mapping issues in system docking using MapStruct? How to simplify field mapping issues in system docking using MapStruct? Apr 19, 2025 pm 06:21 PM

Field mapping processing in system docking often encounters a difficult problem when performing system docking: how to effectively map the interface fields of system A...

What is the difference between memory leaks in Java programs on ARM and x86 architecture CPUs? What is the difference between memory leaks in Java programs on ARM and x86 architecture CPUs? Apr 19, 2025 pm 11:18 PM

Analysis of memory leak phenomenon of Java programs on different architecture CPUs. This article will discuss a case where a Java program exhibits different memory behaviors on ARM and x86 architecture CPUs...

How does IntelliJ IDEA identify the port number of a Spring Boot project without outputting a log? How does IntelliJ IDEA identify the port number of a Spring Boot project without outputting a log? Apr 19, 2025 pm 11:45 PM

Start Spring using IntelliJIDEAUltimate version...

In Java remote debugging, how to correctly obtain constant values ​​on remote servers? In Java remote debugging, how to correctly obtain constant values ​​on remote servers? Apr 19, 2025 pm 01:54 PM

Questions and Answers about constant acquisition in Java Remote Debugging When using Java for remote debugging, many developers may encounter some difficult phenomena. It...

Is the company's security software causing the application to fail to run? How to troubleshoot and solve it? Is the company's security software causing the application to fail to run? How to troubleshoot and solve it? Apr 19, 2025 pm 04:51 PM

Troubleshooting and solutions to the company's security software that causes some applications to not function properly. Many companies will deploy security software in order to ensure internal network security. ...

How to correctly divide business logic and non-business logic in hierarchical architecture in back-end development? How to correctly divide business logic and non-business logic in hierarchical architecture in back-end development? Apr 19, 2025 pm 07:15 PM

Discussing the hierarchical architecture problem in back-end development. In back-end development, common hierarchical architectures include controller, service and dao...

How to convert names to numbers to implement sorting within groups? How to convert names to numbers to implement sorting within groups? Apr 19, 2025 pm 01:57 PM

How to convert names to numbers to implement sorting within groups? When sorting users in groups, it is often necessary to convert the user's name into numbers so that it can be different...

See all articles