a亚洲精品_精品国产91乱码一区二区三区_亚洲精品在线免费观看视频_欧美日韩亚洲国产综合_久久久久久久久久久成人_在线区

首頁 > 編程 > JSP > 正文

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

2024-09-05 00:20:49
字體:
來源:轉載
供稿:網友
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 = "YourFriend@somewhere.com";
String from = "MeMeMe@myhost.com";
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();
}
}
發表評論 共有條評論
用戶名: 密碼:
驗證碼: 匿名發表
主站蜘蛛池模板: 精品无码久久久久国产 | 中文字幕国产 | 亚洲天堂在线视频播放 | 午夜国产一级 | 视频一区免费观看 | 欧美日韩亚洲视频 | 欧美一级在线观看 | 91超碰caoporm国产香蕉 | 久热精品视频在线播放 | 久久久国产一区二区 | 美欧一级片 | 午夜影院免费观看视频 | 日本精品一区二区在线观看 | 亚洲欧美中文日韩v在线观看 | 香蕉一区二区 | 国产精品不卡顿 | 中文字幕欧美在线观看 | 国产欧美日韩综合精品一区二区 | 亚洲三区在线观看 | 91精品午夜 | 青青青免费在线视频 | 日韩欧美国产精品 | 久色 | 精品国产一区二区三区久久影院 | 91天堂 | 国产精品中文字幕在线 | 国产电影一区二区 | 精品一区免费 | 成人三级黄色片 | 久久久久久国产 | 欧美午夜理伦三级在线观看 | 亚洲精品www | 日本精品视频网站 | 综合99 | 成人a级网站 | 另类天堂av | 亚洲福利在线播放 | 久久这里只有精品首页 | 久久久国产精品一区 | 久久伊人免费视频 | 国产精品久久久久久久久岛 |