实例介绍
【实例简介】android smtp发邮件实例
【实例截图】
【实例截图】
【核心代码】
package org.ghy.maildemo;
import java.io.File;
import java.util.Date;
import java.util.Properties;
import javax.activation.DataHandler;
import javax.activation.FileDataSource;
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.MimeBodyPart;
import javax.mail.internet.MimeMessage;
import javax.mail.internet.MimeMultipart;
public class EmailSender {
private Properties properties;
private Session session;
private Message message;
private MimeMultipart multipart;
public EmailSender() {
super();
this.properties = new Properties();
}
public void setProperties(String host,String post){
//地址
this.properties.put("mail.smtp.host",host);
//端口号
this.properties.put("mail.smtp.post",post);
//是否验证
this.properties.put("mail.smtp.auth",true);
this.session=Session.getInstance(properties);
this.message = new MimeMessage(session);
this.multipart = new MimeMultipart("mixed");
}
/**
* 设置收件人
* @param receiver
* @throws MessagingException
*/
public void setReceiver(String[] receiver) throws MessagingException{
Address[] address = new InternetAddress[receiver.length];
for(int i=0;i<receiver.length;i ){
address[i] = new InternetAddress(receiver[i]);
}
this.message.setRecipients(Message.RecipientType.TO, address);
}
/**
* 设置邮件
* @param from 来源
* @param title 标题
* @param content 内容
* @throws AddressException
* @throws MessagingException
*/
public void setMessage(String from,String title,String content) throws AddressException, MessagingException{
this.message.setFrom(new InternetAddress(from));
this.message.setSubject(title);
//纯文本的话用setText()就行,不过有附件就显示不出来内容了
MimeBodyPart textBody = new MimeBodyPart();
textBody.setContent(content,"text/html;charset=gbk");
this.multipart.addBodyPart(textBody);
}
/**
* 添加附件
* @param filePath 文件路径
* @throws MessagingException
*/
public void addAttachment(String filePath) throws MessagingException{
FileDataSource fileDataSource = new FileDataSource(new File(filePath));
DataHandler dataHandler = new DataHandler(fileDataSource);
MimeBodyPart mimeBodyPart = new MimeBodyPart();
mimeBodyPart.setDataHandler(dataHandler);
mimeBodyPart.setFileName(fileDataSource.getName());
this.multipart.addBodyPart(mimeBodyPart);
}
/**
* 发送邮件
* @param host 地址
* @param account 账户名
* @param pwd 密码
* @throws MessagingException
*/
public void sendEmail(String host,String account,String pwd) throws MessagingException{
//发送时间
this.message.setSentDate(new Date());
//发送的内容,文本和附件
this.message.setContent(this.multipart);
this.message.saveChanges();
//创建邮件发送对象,并指定其使用SMTP协议发送邮件
Transport transport=session.getTransport("smtp");
//登录邮箱
transport.connect(host,account,pwd);
//发送邮件
transport.sendMessage(message, message.getAllRecipients());
//关闭连接
transport.close();
}
}
好例子网口号:伸出你的我的手 — 分享!
小贴士
感谢您为本站写下的评论,您的评论对其它用户来说具有重要的参考价值,所以请认真填写。
- 类似“顶”、“沙发”之类没有营养的文字,对勤劳贡献的楼主来说是令人沮丧的反馈信息。
- 相信您也不想看到一排文字/表情墙,所以请不要反馈意义不大的重复字符,也请尽量不要纯表情的回复。
- 提问之前请再仔细看一遍楼主的说明,或许是您遗漏了。
- 请勿到处挖坑绊人、招贴广告。既占空间让人厌烦,又没人会搭理,于人于己都无利。
关于好例子网
本站旨在为广大IT学习爱好者提供一个非营利性互相学习交流分享平台。本站所有资源都可以被免费获取学习研究。本站资源来自网友分享,对搜索内容的合法性不具有预见性、识别性、控制性,仅供学习研究,请务必在下载后24小时内给予删除,不得用于其他任何用途,否则后果自负。基于互联网的特殊性,平台无法对用户传输的作品、信息、内容的权属或合法性、安全性、合规性、真实性、科学性、完整权、有效性等进行实质审查;无论平台是否已进行审查,用户均应自行承担因其传输的作品、信息、内容而可能或已经产生的侵权或权属纠纷等法律责任。本站所有资源不代表本站的观点或立场,基于网友分享,根据中国法律《信息网络传播权保护条例》第二十二与二十三条之规定,若资源存在侵权或相关问题请联系本站客服人员,点此联系我们。关于更多版权及免责申明参见 版权及免责申明


网友评论
我要评论