JAVA 程序发送邮件

package com.zyeeda.mail;

import java.io.UnsupportedEncodingException;
import java.util.Properties;

import javax.mail.Address;
import javax.mail.Message;
import javax.mail.MessagingException;
import javax.mail.Session;
import javax.mail.Transport;
import javax.mail.internet.AddressException;
import javax.mail.internet.InternetAddress;
import javax.mail.internet.MimeMessage;

public class MailTest {
	public static void main(String[] args) {
		Properties prop = new Properties();
		prop.setProperty("mail.smtp.auth", "true"); 
		prop.setProperty("mail.transport.protocol", "smtp");
		//props.setProperty("mail.transport.protocol", "openssl");
		//props.setProperty("mail.store.protocol", "openssl");

		
		Session session = Session.getDefaultInstance(prop);
		//session.setDebug(true);
		MimeMessage mes = new MimeMessage(session);
		
		try {
			mes.setSubject("Hi----Lei");
			mes.setText("Hello,你好,Lei,这是一封测试邮件。");
		} catch (MessagingException e) {
			// TODO Auto-generated catch block
			e.printStackTrace();
		}
		
		//set sender address
		Address address = null;
		Address toAddress = null;
		try {
			address = new InternetAddress("sz_c*@sina.com","ZYDZ_CMS");
		} catch (UnsupportedEncodingException e) {
			// TODO Auto-generated catch block
			e.printStackTrace();
		}
		try {
			mes.setFrom(address);
		} catch (MessagingException e) {
			// TODO Auto-generated catch block
			e.printStackTrace();
		}
		
		try {
			toAddress = new InternetAddress("72806***@qq.com");
			
		} catch (AddressException e) {
			// TODO Auto-generated catch block
			e.printStackTrace();
		}
		try {
			mes.addRecipient(Message.RecipientType.TO, toAddress);
			Transport tsp = session.getTransport("smtp");
			tsp.connect("smtp.sina.com", "sz_c*", "******");
			tsp.sendMessage(mes,mes.getAllRecipients());
			System.out.println("ok");
			tsp.close();
		} catch (MessagingException e) {
			// TODO Auto-generated catch block
			e.printStackTrace();
		}
		
	}
}

 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值