发送内部Email

发送内部Email

ID:38757465

大小:22.46 KB

页数:9页

时间:2019-06-19

发送内部Email_第1页
发送内部Email_第2页
发送内部Email_第3页
发送内部Email_第4页
发送内部Email_第5页
资源描述:

《发送内部Email》由会员上传分享,免费在线阅读,更多相关内容在教育资源-天天文库

1、Tosendane-mailusingyourJavaApplicationissimpleenoughbuttostartwithyoushouldhave JavaMailAPI and JavaActivationFramework(JAF)installedonyourmachine.·Youcandownloadlatestversionof JavaMail(Version1.2) fromJava'sstandardwebsite.·Youcandownloadlatestversionof JAF

2、(Version1.1.1) fromJava'sstandardwebsite.Downloadandunzipthesefiles,inthenewlycreatedtopleveldirectoriesyouwillfindanumberofjarfilesforboththeapplications.Youneedtoadd mail.jarand activation.jar filesinyourCLASSPATH.SendaSimpleE-mail:Hereisanexampletosendasim

3、plee-mailfromyourmachine.Hereitisassumedthatyour localhost isconnectedtotheinternetandcapableenoughtosendanemail.//FileNameSendEmail.javaimportjava.util.*;importjavax.mail.*;importjavax.mail.internet.*;importjavax.activation.*;publicclassSendEmail{publicstati

4、cvoidmain(String[]args){//Recipient'semailIDneedstobementioned.Stringto="abcd@gmail.com";//Sender'semailIDneedstobementionedStringfrom="web@gmail.com";//AssumingyouaresendingemailfromlocalhostStringhost="localhost";//GetsystempropertiesPropertiesproperties=Sy

5、stem.getProperties();//Setupmailserverproperties.setProperty("mail.smtp.host",host);//GetthedefaultSessionobject.Sessionsession=Session.getDefaultInstance(properties);try{//CreateadefaultMimeMessageobject.MimeMessagemessage=newMimeMessage(session);//SetFrom:h

6、eaderfieldoftheheader.message.setFrom(newInternetAddress(from));//SetTo:headerfieldoftheheader.message.addRecipient(Message.RecipientType.TO,newInternetAddress(to));//SetSubject:headerfieldmessage.setSubject("ThisistheSubjectLine!");//Nowsettheactualmessageme

7、ssage.setText("Thisisactualmessage");//SendmessageTransport.send(message);System.out.println("Sentmessagesuccessfully....");}catch(MessagingExceptionmex){mex.printStackTrace();}}}Compileandrunthisprogramtosendasimplee-mail:$javaSendEmailSentmessagesuccessfull

8、y....Ifyouwanttosendane-mailtomultiplerecipientsthenfollowingmethodswouldbeusedtospecifymultiplee-mailIDs:voidaddRecipients(Message.RecipientTypetype,Address[]addresses)throwsMessagingExc

当前文档最多预览五页,下载文档查看全文

此文档下载收益归作者所有

当前文档最多预览五页,下载文档查看全文
温馨提示:
1. 部分包含数学公式或PPT动画的文件,查看预览时可能会显示错乱或异常,文件下载后无此问题,请放心下载。
2. 本文档由用户上传,版权归属用户,天天文库负责整理代发布。如果您对本文档版权有争议请及时联系客服。
3. 下载前请仔细阅读文档内容,确认文档内容符合您的需求后进行下载,若出现内容与标题不符可向本站投诉处理。
4. 下载文档时可能由于网络波动等原因无法下载或下载错误,付费完成后未能成功下载的用户请联系客服处理。