动网论坛,站长建站首选,国内使用量最多的论坛软件 动网论坛官方技术讨论区 站长工具 申请属于您自己的免费论坛
首页 | 新闻资讯 | 网站运营 | 网络编程 | 数据库 | 服务器 | 网页设计 | 图像媒体 | 网络应用 | 搜索优化 | 资源下载 | 动网主机 | DVBOX
    本站内  互联网 ASP论坛  ASP.Net论坛  PHP论坛
  
   Asp → 阅读文章

 邮件发送简单例子-bean文件

作者来源: 
阅读 1242 人次 , 2006-3-29 4:22:00 


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();
}
}
}

 本文Tags邮件  
 收藏本文  打印本文  论坛讨论  关闭窗口
· 上一篇:邮件发送简单例子-html文件
· 下一篇:jsp源码实例5(cookie)
· 看人家用使用InstallShield制作ASP安装程序(6)
· js的单元格颜色间隔
· 从文本文件中读取信息并存储入数据库
· 对Session和Cookie的区分与理解
· C#的前途如何?


关于本站 | 联系我们 | 业务合作 | 客户案例 | 诚聘英才 | 广告合作 | 收藏本站
海口动网先锋网络科技有限公司版权所有
Copyright © 2000 - 2006 Cndw.Com
中华人民共和国电信与信息服务业务经营许可证编号 琼 ICP 020077