当前位置:  编程技术>java/j2ee

JSP发送邮件实例

    来源: 互联网  发布时间:2014-10-14

    本文导语:  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.int...

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  

    
 
 

您可能感兴趣的文章:

  • ******"Servlet根据JSP视图的需求生成JavaBeans的实例并输出给JSP环境"如何实现上面这句话的效果??*******
  • jsp实例??
  • 如何向JSP中传送Sevrlet的实例?
  • 请问那有《UltraDev 4 JSP/XML 高级实例教程》下载?
  • 系统参数???and后台管理实例???and JSP???
  • JSP 重置按钮清空传入的表单数据实例
  • 在JSP中如何实例化构造函数有参数的JavaBean?
  • jsp重定向地址栏不改变的实例
  • JSP读取文件实例
  • jsp源码实例1(输出)
  • jsp源码实例3(获取jsp各种参数)
  • jsp源码实例4(搜索引擎)
  • jsp源码实例2(获取表单参数)
  • JSP forward用法分析实例代码分析
  • jsp中使用javabean实例介绍
  • jsp源码实例5(cookie)
  • JSP 自定义标签之一 简单实例
  • 基于JSP 自定义标签使用实例介绍
  • 如何输出org.jdom.Document实例到JSP页面上?
  • 实例讲解JSP Model2体系结构(上)
  • jsp发送邮件的问题
  • 如何使用jsp发送邮件
  • 如何通过其他网站发送短消息(比如新浪)?JSP页面提交,高分请教!!
  • 我想用jsp做个发送邮件的程序,请问需要什么服务器?怎样配置?最好还能提供一个简单的测试程序!谢谢!
  • 很简单。50分!在j2eetutorial1.3的Bank例子中是哪个.jsp或FORM率先用method=get发送数据给
  • 邮件发送简单例子-jsp文件
  • 从jsp发送动态图像
  • JSP 自定义标签之一 简单实例 iis7站长之家
  • JSP对浏览器发送来的数据进行重新编码的两种方式
  • 如何在JSP中使用JAVAMAIL发送需要身份验证的信件???
  • 急!急!急!怎么在jsp中用javamail发送html格式的邮件???
  •  
    本站(WWW.)旨在分享和传播互联网科技相关的资讯和技术,将尽最大努力为读者提供更好的信息聚合和浏览方式。
    本站(WWW.)站内文章除注明原创外,均为转载、整理或搜集自网络。欢迎任何形式的转载,转载请注明出处。












  • 相关文章推荐
  • 在JSP中如何解决自动发邮件的问题?
  • 谁能给我一份“接收邮件”的jsp代码?
  • 请问怎样用jsp限制用户只能输入数字,另,怎样用jsp验证邮件格式是否正确?
  • 我怎么样用网易的邮件服务器??先看看我的jsp代码,然后告诉我哪里错了。
  • 有jsp~javabean的关于如何接收email的代码吗?利用他人的邮件服务器(smtp:163.com)收发邮件
  • 如何用JSP实现发邮件?
  • 请问怎么在jsp里发带附件的邮件啊?我可以捐500分给回答的人
  • 哪位大虾知道在JSP中如何下载邮件的附件,用JAVAMAIL
  • 那位老兄有java(jsp、servlet)发邮件的源代码?
  • JSP中清空cookie代码参考
  • 现有1.jsp、2.jsp、3.jsp三个文件,我怎么在3.jsp文件中得到1.jsp中输入的值?
  • 一个框界网爷包含上下两个网页a1.jsp和a2.jsp,怎么实现a1.jsp自身不变且提交数据到下面的a2.jsp呢?不胜感激,急..
  • 请问jsp和serlet之间怎么通讯,jsp和jsp之间呢?
  • 请问<%@include file="abc.jsp"%>与<jsp:include page="abc.jsp"/>之间的差别
  • response.sendRedirect("index.jsp") 和 <jsp:forward page="index.jsp"/>的区别?
  • 想把一个jsp转到另一个jsp页面,要穿参数,中文的(jsp变量)。谁教教我?!
  • aaa.jsp有如下链接,当单击该链接时将id值传递给bbb.jsp,怎样在bbb.jsp中引用这个id值?
  • jsp+bean还是jsp+ejb还是jsp+servlet还是asp+activex好?
  • 谁能告诉我,怎么调试jsp程序呀!我在jsp中调用java,但是Tomcat这家伙只会给我报jsp文件出错。这可怎么办呀?
  • jsp中如何获得当前jsp文件所在的目录,用request.getServletPath()得到的路径含有jsp文件名,有没有办法得到目录(不含文件名)?
  • 初学jsp,一个html调用一个jsp,这个jsp调用一个javaBean,已编译成类,最后如何部署(用j2sdkee)?
  • 我要学jsp,已经下载了j2ee1.4,需要一个支持jsp引擎的WEB服务器或jsp引擎!!(急,马上给分)
  • jsp中相对路径怎么表示?例如当前目录下的jsp目录里的文件。
  • 我已经在输出前包含了<jsp:include page="2.jsp"/>,
  • 欲学JSP,请教JSP资料,最好电子版。
  • jsp中文乱码 jsp mysql 乱码的解决方法
  • jsp+JavaBean vs jsp+Servlet+JavaBean
  • JSP/html 编辑器 Bravo JSP editor
  • JSP开发入门(五)--JSP其他相关资源
  • <jsp:include page="SystemLeft.jsp?TypeId=<%= itTypeId.toString() %>" flush="true" />


  • 站内导航:


    特别声明:169IT网站部分信息来自互联网,如果侵犯您的权利,请及时告知,本站将立即删除!

    ©2012-2021,,E-mail:www_#163.com(请将#改为@)

    浙ICP备11055608号-3