JSP发送邮件实例

或许你不是最优秀的,但一定是最懂得心疼我的。累的时候,你的肩膀可以让我依靠;寒冷的日子,你的怀抱就是我的温暖;伤心的时候可以得到你的安慰;寂寞的时候有你的微笑陪伴;快乐的时候可以与你一起分享;风风雨雨我们一起走过;红尘纷扰我们一起面对,任岁月平淡了流年,任时光抹去了激情,你的爱,一直都在。
vishal_donth gave this response on 10/18/2000://these are the pakages to be imported from// Java Mail//The Java Mail PAckage either be dowloaded//seperately//or else is Available in the J2sdkee1.2// (Java Enterprise Edition)import javax.mail.*;import javax.mail.internet.*;import java.util.*;//This function can be used to send the mail// with the parameters given to it//U have to specify the smtp server through//which u have to send the mail//since i was trying with a homenetmail//account i directly sent the mail its server//For sending this mail u need a mail server//which lets u to relay the messages//Try this thing for sending to a//www.homenetmail.com account because it lets//u send//mails to the accounts like example try//sending it to a "abc@homenetmail.com"//account.Create the mail account in homenet//mail first. If u get any other server which//supports relaying u can try this on that//also.//Use this function in ur Servlet to send//mail by calling the function with the//parameterspublic void sendMail(String toAddr, String subject, String body, String fromAddr)throws RemoteException{try{Properties props = new Properties();props.put("mail.smtp.host","mail.homenetmail.com");//Here we specify the SMTP server through//which the mail should be deliveredSession session = Session.getDefaultInstance(props, null);Message msg = new MimeMessage(session);msg.setFrom(new InternetAddress(fromAddr));//Specify the From AddressInternetAddress[] tos =InternetAddress.parse(toAddr);//Specify the To Addressmsg.setRecipients(Message.RecipientType.TO,tos);msg.setSubject(subject);//Specify the Subjectmsg.setText(body);//Specify the BodyTransport.send(msg);System.out.println("Message is Sent");}catch(Exception e){System.out.println(e);}}// U have to run this function on a computer//which is directly connected// to internet but not through a//proxy......or else use a proxy which//supports SMTP

本文JSP发送邮件实例到此结束。牢记所得到的,忘记所付出的。小编再次感谢大家对我们的支持!

您可能有感兴趣的文章
JSP如何实现简单网页计算器

JSP动态如何实现web网页登陆和注册功能

JSP如何实现文件上传功能

SSM框架整合JSP中集成easyui前端ui项目开发示例详解

教你怎么用JSP统计网站访问人数