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

首頁 > 開發 > 綜合 > 正文

郵件發送簡單例子-bean文件

2024-07-21 02:14:09
字體:
來源:轉載
供稿:網友


simplesendmessage.java

import java.util.*;

import javax.mail.*;
import javax.mail.internet.*;
import javax.activation.*;

public class simplesendmessage {

public static void main(string[] args) {

// collect the necessary information to send a simple message
// make sure to replace the values for host, to, and from with
// valid information.
// host - must be a valid smtp server that you currently have
// access to.
// to - whoever is going to get your email
// from - whoever you want to be. just remember that many smtp
// servers will validate the domain of the from address
// before allowing the mail to be sent.
string host = "server.myhost.com";
string to = "[email protected]";
string from = "[email protected]";
string subject = "jsp rules!";
string messagetext = "i am sending a message using the"
+ " javamail api./ni can include any text that i want.";
boolean sessiondebug = false;

// create some properties and get the default session.
properties props = system.getproperties();
props.put("mail.host", host);
props.put("mail.transport.protocol", "smtp");

session session = session.getdefaultinstance(props, null);

// set debug on the session so we can see what is going on
// passing false will not echo debug info, and passing true
// will.
session.setdebug(sessiondebug);

try {

// instantiate a new mimemessage and fill it with the
// required information.
message msg = new mimemessage(session);

msg.setfrom(new internetaddress(from));
internetaddress[] address = {new internetaddress(to)};
msg.setrecipients(message.recipienttype.to, address);
msg.setsubject(subject);
msg.setsentdate(new date());
msg.settext(messagetext);

// hand the message to the default transport service
// for delivery.
transport.send(msg);
}
catch (messagingexception mex) {

mex.printstacktrace();
}
}
}


,歡迎訪問網頁設計愛好者web開發。
發表評論 共有條評論
用戶名: 密碼:
驗證碼: 匿名發表
主站蜘蛛池模板: 蓬安县| 靖边县| 时尚| 新宁县| 德钦县| 台州市| 德格县| 洛阳市| 平昌县| 镇沅| 时尚| 新龙县| 连平县| 成都市| 札达县| 道真| 五寨县| 辽阳市| 铅山县| 文化| 峨山| 抚远县| 玛多县| 龙口市| 望城县| 祁连县| 承德县| 兴和县| 奈曼旗| 通州市| 石台县| 海安县| 台南市| 姚安县| 赤壁市| 手游| 蒙阴县| 名山县| 永兴县| 崇阳县| 顺昌县|