java Mail发送电子邮件笔记

基本了解:

电子邮件需要在邮件客户端和邮件服务器之间,以及两个邮件服务器之间进行传递,就必须遵循一定的规则,这些规则就是邮件传输协议。SMTP协议定了邮件客户端与SMTP服务之间,以及两台SMTP服务器之间发送邮件的通信规则;POP3/IMAP协议定义了邮件客户端与POP3服务器之间收发邮件的通信规则

通信协议:

SMTP协议(Simple Mail Transfer Protocol,简单邮件传输协议):定义了邮件客户端与SMTP服务器之间,以及两台SMTP服务器之间发送邮件的通信规则 。SMTP协议属于TCP/IP协议族,通信双方采用一问一答的命令/响应形式进行对话,且定了对话的规则和所有命令/响应的语法格式。

IMAP(Internet Mail Access Protocol,Internet邮件访问协议):它的主要作用是邮件客户端(例如MS Outlook Express)可以通过这种协议从邮件服务器上获取邮件的信息,下载邮件等

POP3(Post Office Protocol - Version 3,“邮局协议版本3”):**主要用于支持使用客户端远程管理在服务器上的电子邮件。提供了SSL加密的POP3协议被称为POP3S。

Exchange(Exchange Server):是微软公司的一套电子邮件服务组件,是个消息与协作系统,在此基础上可以开发工作流,知识管理系统,Web系统或者是其他消息系统。

CardDAV:是一种通讯录同步的开放协议。使用 CardDAV 同步的通讯录可以编辑、修改或者删除,并且你在手机上的这些操作也同样会和服务器同步,并同时同步到你的其他设备上

准备阶段:

首先在java Project项目导入mail.jar包并buildpath(这个包主要用到的是javax.mail.internet.和javax.mail.的内容,有兴趣的同学可以去分析),然后应该确定把发邮件一方开启了POP3服务(开启此服务才能使用java程序发邮件,使用时配置参数也会不同,在下面实例进行讲解),最后对下面提供的简单使用入门文件(MailUtils.java)进行分析:
1.创建一个静态方法sendMail(String email,String emailMsg)其中参数email代表的是注册 用户的邮件,emailMsg代表的是想要发送的信息
2.创建程序与邮件服务器会话对象 Session,而得到session必须有两个参数:
① Properties对象(主要用来配置传输协议、服务器地址及指定验证)下面以网易126邮箱为例 实际配置:

 Properties props = new Properties();
 props.setProperty("mail.transport.protocol", "SMTP");//传输协议 
 props.setProperty("mail.host", "smtp.126.com");//服务器地址
 props.setProperty("mail.smtp.auth", "true");// 指定验证为true

② Authenticator验证器对象:

Authenticator auth = new Authenticator() {
public PasswordAuthentication getPasswordAuthentication() {
      return new PasswordAuthentication("发送方邮箱名", "ceshi123(授权码)");
   }
};

注:上面的授权码是该邮箱开启POP3/SMTP/IMAP设置获得的!!!

③ 获取session对象

Session session=Session.getInstance(props, auth);
  1. 接下来就是消息的封装:
//创建一个Message,它相当于是邮件内容
 Message message = new MimeMessage(session);
 message.setFrom(new InternetAddress("dy4********@126.com")); // 设置发送者
 message.setRecipient(RecipientType.TO, new InternetAddress(email)); // 设置发送方式与接收者
 message.setSubject("邮箱验证码");
 message.setContent(emailMsg, "text/html;charset=utf-8");

4.使用Transport对象,发送邮件

Transport.send(message);

5.下面提供实际使用代码:

package com.dy;
import java.security.GeneralSecurityException;
import java.util.Properties;
import javax.mail.Authenticator;
import javax.mail.Message;
import javax.mail.MessagingException;
import javax.mail.PasswordAuthentication;
import javax.mail.Session;
import javax.mail.Transport;
import javax.mail.internet.AddressException;
import javax.mail.internet.InternetAddress;
import javax.mail.internet.MimeMessage;
import javax.mail.internet.MimeMessage.RecipientType;
import com.sun.mail.util.MailSSLSocketFactory;

public class MailDemo {

 //参数 email 代表的是注册用户的邮件
 //参数 emailMsg 代表的是发送的信息
 public static void sendMail(String email,String emailMsg)
        throws AddressException,MessagingException, GeneralSecurityException{
       //1.创建一个程序与邮件服务器会话对话 Session
       Properties props=new Properties();
       //开启Debug调试
       props.setProperty("mail.debug", "true");
       //发送服务器需要身份验证
       props.setProperty("mail.smtp.auth", "true");
       //发送邮件服务器的主机名
       props.setProperty("mail.host", "smtp.qq.com");
       //发送邮件协议
       props.setProperty("mail.transport.protocol", "smtp");
       //开启ssl加密(并不是所有的邮箱服务器都需要,但是qq邮箱服务器是必须的)
       MailSSLSocketFactory msf=new MailSSLSocketFactory();
       msf.setTrustAllHosts(true);
       props.put("mail.smtp.ssl.enable", "true");
       props.put("mail.smtp.ssl.socketFactory", msf);
       
       //创建验证器
       Authenticator auth=new Authenticator(){
           public PasswordAuthentication getPasswordAuthentication(){
                return new PasswordAuthentication("4********@qq.com", "weczb******ubibi");
           }
       };
       
       Session session=Session.getInstance(props,auth);
       
       //2.创建一个Message,它相当于是邮件内容
       Message message=new MimeMessage(session);   
       message.setFrom(new InternetAddress("4********@qq.com")); //设置发送者
       message.setRecipient(RecipientType.TO, new InternetAddress(email));      
       message.setSubject("邮件主题");
       message.setContent(emailMsg,"text/html;charset=utf-8");
      
       //3. 创建Transport用于将邮件发送
       Transport.send(message);
 }
 
 public static void main(String[] args) throws MessagingException, GeneralSecurityException{
     sendMail("dy4********@126.com","78978");
//      sendMail("4********@qq.com","收的到吗》?"); 
//      sendMail("denny.you@***.com","周报写完了没?");        
 }
}

你可能感兴趣的:(java Mail发送电子邮件笔记)