国产探花免费观看_亚洲丰满少妇自慰呻吟_97日韩有码在线_资源在线日韩欧美_一区二区精品毛片,辰东完美世界有声小说,欢乐颂第一季,yy玄幻小说排行榜完本

首頁 > 編程 > JSP > 正文

JSP發送郵件實例

2024-09-05 00:18:15
字體:
來源:轉載
供稿:網友

現在許多網站都會提供用戶注冊功能,當我們注冊成功時,我們會從注冊網站收到一封電子郵件,電子郵件的內容可以包含信息,以及激活帳戶的超鏈接,今天錯新技術頻道小編就和大家分享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??
//parameters??

public 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 delivered??
Session session = Session.getDefaultInstance(props, null);??
Message msg = new MimeMessage(session);??
msg.setFrom(new InternetAddress(fromAddr));??
//Specify the From Address??
InternetAddress[] tos =InternetAddress.parse(toAddr);??
//Specify the To Address??
msg.setRecipients(Message.RecipientType.TO,tos);??
msg.setSubject(subject);??
//Specify the Subject??
msg.setText(body);??
//Specify the Body??
Transport.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發送郵件實例,相信大家都有了一定的了解,想要了解更多的技術內容,請繼續關注錯新技術頻道吧!

發表評論 共有條評論
用戶名: 密碼:
驗證碼: 匿名發表
主站蜘蛛池模板: 包头市| 集安市| 阿瓦提县| 启东市| 伊春市| 勃利县| 榆中县| 汝南县| 绥江县| 盐津县| 毕节市| 冷水江市| 庄浪县| 射洪县| 山西省| 河北区| 南康市| 大埔区| 德清县| 洛扎县| 五华县| 久治县| 泸水县| 新晃| 元朗区| 洛川县| 太康县| 蒙山县| 襄樊市| 永春县| 扶风县| 乐陵市| 鄂州市| 中西区| 宁海县| 麻江县| 麻江县| 钟山县| 龙海市| 任丘市| 舟山市|