发送邮件客户端简单实现_基于JavaMail_QQ邮箱SMTP服务器为例

电子邮件常用的SMTP,POP3,IMAP等协议以及SSL协议就不在此赘述了

至于依赖的Java类库:

您可以从 Java 网站下载最新版本的 JavaMail,本文用到JavaMail里的mail.jar(版本1.4.5)

您可以从 Java 网站下载最新版本的 JAF,本文用到JAF里的activation.jar(版本1.1.1)

本实例以 QQ 邮件服务器为例,你需要在登录QQ邮箱"设置"->"账号"中开启POP3/SMTP服务 ,如下图所示:

QQ 邮箱通过生成授权码来代替密码:

代码实现如下:


//需要用户名密码邮件发送实例
//文件名 SendEmail.java
//本实例以QQ邮箱为例,你需要在qq后台设置

import java.util.Properties;

import java.security.GeneralSecurityException;
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.InternetAddress;
import javax.mail.internet.MimeMessage;

import com.sun.mail.util.MailSSLSocketFactory;

public class SendEmail {
	public static void main(String[] args) {
		// 收件人电子邮箱
		String to = "142***[email protected]";

		// 发件人电子邮箱
		String from = "192***[email protected]";

		// 指定发送邮件的主机为 smtp.qq.com
		String host = "smtp.qq.com"; // QQ 邮件服务器

		// 获取系统属性
		Properties properties = System.getProperties();

		// 设置邮件服务器
		properties.setProperty("mail.smtp.host", host);
		properties.put("mail.smtp.auth", "true");
                 //设置SSL加密
                MailSSLSocketFactory sf;
		try {
			sf = new MailSSLSocketFactory();
			sf.setTrustAllHosts(true);
			properties.put("mail.smtp.ssl.enable", "true");
			properties.put("mail.smtp.ssl.socketFactory", sf);

		} catch (GeneralSecurityException e) {
			// TODO Auto-generated catch block
			e.printStackTrace();
		}
		// 获取默认session对象
		Session session = Session.getDefaultInstance(properties, new Authenticator() {
			public PasswordAuthentication getPasswordAuthentication() {
				return new PasswordAuthentication("192***[email protected]", "这里填qq邮箱授权码"); // 发件人邮件用户名、密码
			}
		});

		try {
			// 创建默认的 MimeMessage 对象
			MimeMessage message = new MimeMessage(session);

			// Set From: 头部头字段
			message.setFrom(new InternetAddress(from));

			// Set To: 头部头字段
			message.addRecipient(Message.RecipientType.TO, new InternetAddress(to));

			// Set Subject: 头部头字段
			message.setSubject("This is the Subject Line!");

			// 设置消息体
			message.setText("This is actual message");

			// 发送消息
			Transport.send(message);
			System.out.println("Sent message successfully....from runoob.com");
		} catch (MessagingException mex) {
			mex.printStackTrace();
		}
	}
}



猜你喜欢

转载自blog.csdn.net/sj_wl/article/details/80368468