java发送带附件的邮件_使用JavaMail发送邮件之发送带附件邮件一

现在来研究一下发送带附件的邮件是怎么发送的,当然这篇中的附件主要为服务器上的附件,下一篇将会介绍通过URL来获取附件并发送邮件。

主要代码如下:import org.apache.commons.mail.DefaultAuthenticator;

import org.apache.commons.mail.EmailAttachment;

import org.apache.commons.mail.EmailException;

import org.apache.commons.mail.MultiPartEmail;

public class AttachmentLocalTest {

/**

* @param args

*/

public static void main(String[] args) {

// TODO Auto-generated method stub

// Create the p_w_upload

EmailAttachment p_w_upload = new EmailAttachment();

//附件地址

p_w_upload.setPath("E:/test.txt");

p_w_upload.setDisposition(EmailAttachment.ATTACHMENT);

//附件说明

p_w_upload.setDescription("Picture of John");

//附件名称

//这里需要加上文件的后缀名

p_w_upload.setName("test2.txt");

// Create the email message

MultiPartEmail email = new MultiPartEmail();

//邮件服务器

email.setHostName("smtp.126.com");

//端口号

email.setSmtpPort(25);

//用户名、密码

email.setAuthenticator(new DefaultAuthenticator("yuke198907@126.com", "密码你懂的"));

email.setSSLOnConnect(true);

try {

//收件人

email.addTo("yuke@iisant.com", "yuke");

//发件人

email.setFrom("yuke198907@126.com", "yuke198907");

//标题

email.setSubject("The picture");

//内容

email.setMsg("Here is the picture you wanted");

// add the p_w_upload

email.attach(p_w_upload);

// send the email

email.send();

} catch (EmailException e) {

// TODO Auto-generated catch block

e.printStackTrace();

}

}

}

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值