javax.mail 发邮件方法二

Java邮件发送示例
本文提供了一个使用Java发送邮件的示例代码,通过配置SMTP服务器、用户名和密码等信息,利用MimeMessage类构建邮件内容并发送。示例中详细展示了如何设置邮件的基本属性如发件人、收件人、主题及正文。

import java.util.Properties;


import javax.mail.Authenticator;

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.MimeMessage;


public class TestEmail {

/**

* @param  host 邮箱发件服务器

* @param  userName 发送人用户名,一般是邮箱名

* @param  password 邮箱密码

* @param  receive 收件人邮箱地址

* @throws  Exception

*/

public static void sendMail(String host,final String userName,final String password,String receive) throws Exception{

Properties props = new Properties();

props.put("mail.smtp.host", host);

props.put("mail.smtp.auth", "true");

Session session = Session.getDefaultInstance(props, new Authenticator(){protected PasswordAuthentication getPasswordAuthentication() {

return new PasswordAuthentication(userName,password);

}});

MimeMessage m = new MimeMessage(session);

m.setFrom(new InternetAddress(userName,"huhao"));

m.setRecipients(Message.RecipientType.TO, receive);

m.setSubject("hello3");

m.setText("nihao1");

Transport.send(m);

}

public static void main(String[] args) throws Exception{

String host = "";//例如qq邮箱smtp.qq.com

String userName = "";

String password = "";

String receive = "";

TestEmail.sendMail(host,userName,password,receive);

}

}


转载于:https://my.oschina.net/hu382337381/blog/398190

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值