濮阳杆衣贸易有限公司

主頁 > 知識庫 > JSP發(fā)送郵件實例

JSP發(fā)送郵件實例

熱門標簽:電銷外呼系統(tǒng) 排行榜 地圖標注創(chuàng)業(yè)項目入駐 山東智能云外呼管理系統(tǒng) 廣州三五防封電銷卡 外呼系統(tǒng)啥意思 地圖標注制作道路 珠海銷售外呼系統(tǒng)運營商 長春回撥外呼系統(tǒng)廠家 四川電信外呼系統(tǒng)靠譜嗎
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  
您可能感興趣的文章:
  • 郵件發(fā)送簡單例子-jsp文件
  • jspsmart文件上傳與郵件發(fā)送的實例
  • node.js使用nodemailer發(fā)送郵件實例
  • Nodejs中讀取中文文件編碼問題、發(fā)送郵件和定時任務實例
  • 純javascript實現(xiàn)自動發(fā)送郵件
  • 基于Node.js實現(xiàn)nodemailer郵件發(fā)送

標簽:紹興 玉樹 吳忠 保定 廣元 北海 潮州 肇慶

巨人網絡通訊聲明:本文標題《JSP發(fā)送郵件實例》,本文關鍵詞  JSP,發(fā)送,郵件,實例,JSP,發(fā)送,;如發(fā)現(xiàn)本文內容存在版權問題,煩請?zhí)峁┫嚓P信息告之我們,我們將及時溝通與處理。本站內容系統(tǒng)采集于網絡,涉及言論、版權與本站無關。
  • 相關文章
  • 下面列出與本文章《JSP發(fā)送郵件實例》相關的同類信息!
  • 本頁收集關于JSP發(fā)送郵件實例的相關信息資訊供網民參考!
  • 推薦文章
    读书| 惠水县| 阳西县| 禄丰县| 射阳县| 垫江县| 米林县| 绵竹市| 石阡县| 通河县| 宜川县| 冷水江市| 曲水县| 富平县| 泸西县| 莒南县| 玉山县| 乐清市| 莱州市| 隆安县| 会同县| 呼伦贝尔市| 吉安市| 塔河县| 沾益县| 理塘县| 宝坻区| 长兴县| 错那县| 平舆县| 敖汉旗| 绵阳市| 宜州市| 清流县| 阆中市| 芜湖市| 原平市| 建瓯市| 大同县| 靖安县| 龙川县|