Java:发邮件

java 发邮件,有监控需要发送邮件到op通知很简单 直接调用

SendMail2.sendMail("zong_xuan@126.com","报警信息")


package com.stevezong.sendMail;

import java.io.IOException;
import java.util.Properties;

import javax.mail.Authenticator;
import javax.mail.BodyPart;
import javax.mail.Message;
import javax.mail.Multipart;
import javax.mail.PasswordAuthentication;
import javax.mail.Session;
import javax.mail.Transport;
import javax.mail.Message.RecipientType;
import javax.mail.MessagingException;
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;

public class SendMail2 {
	
	private static final String MAIL_HOST = "smtp.exmail.qq.com";
	private static final int MAIL_TIMEOUT = 3000;
	private static final boolean MAIL_AUTH = true;
	private static final String AUTH_USER_ADDRESS = "邮箱";
	private static final String AUTH_USER_PASSWORD = "邮箱密码";
	private static final String AUTH_USER_NICKNAME = "监控看门狗";

	//receiver 收件人
	//mailInfo 邮件信息
	public static void sendMail(String receiver, String mailInfo) throws IOException, MessagingException  {
		Properties serverProperties = new Properties();
		serverProperties.put("mail.smtp.host", MAIL_HOST);
		serverProperties.put("mail.smtp.auth", MAIL_AUTH);
		serverProperties.put("mail.smtp.timeout", MAIL_TIMEOUT);
		Authenticator authenticator = new Authenticator() {
			@Override
			protected PasswordAuthentication getPasswordAuthentication() {
				return new PasswordAuthentication(AUTH_USER_ADDRESS, AUTH_USER_PASSWORD);
			}
		};
		Session session = Session.getInstance(serverProperties, authenticator);
		Message mailMsg = new MimeMessage(session);
		//邮件标题
		mailMsg.setSubject("XXX异常");
		mailMsg.setFrom(
				new InternetAddress(MimeUtility.encodeText(AUTH_USER_NICKNAME) + "<" + AUTH_USER_ADDRESS + ">"));
		mailMsg.setRecipient(RecipientType.TO, new InternetAddress(receiver));
		mailMsg.setRecipient(RecipientType.CC, new InternetAddress("抄送人邮箱"));
		Multipart mailContent = new MimeMultipart();
		BodyPart contentPart = new MimeBodyPart();
		contentPart.setText(mailInfo+"time:"+System.currentTimeMillis());
		mailContent.addBodyPart(contentPart);
		mailMsg.setContent(mailContent);
		Transport.send(mailMsg);
		System.out.println("sendMailSucceed!!!");
	}
}




评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值