主页 > 知识库 > 邮件发送简单例子-jsp文件

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

热门标签:美图手机 智能手机 银行业务 检查注册表项 服务器配置 网站文章发布 铁路电话系统 呼叫中心市场需求
MailExample.jsp

html>
head>
title>JSP JavaMail Example /title>
/head>

body>

%@ page import="java.util.*" %>
%@ page import="javax.mail.*" %>
%@ page import="javax.mail.internet.*" %>
%@ page import="javax.activation.*" %>

%
String host = "yourmailhost";
String to = request.getParameter("to");
String from = request.getParameter("from");
String subject = request.getParameter("subject");
String messageText = request.getParameter("body");
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 mailSession = 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.
mailSession.setDebug(sessionDebug);

// Instantiate a new MimeMessage and fill it with the
// required information.
Message msg = new MimeMessage(mailSession);

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

out.println("Mail was sent to " + to);
out.println(" from " + from);
out.println(" using host " + host + ".");

%>
/table>
/body>
/html>

您可能感兴趣的文章:
  • JSP发送邮件实例
  • jspsmart文件上传与邮件发送的实例
  • node.js使用nodemailer发送邮件实例
  • Nodejs中读取中文文件编码问题、发送邮件和定时任务实例
  • 纯javascript实现自动发送邮件
  • 基于Node.js实现nodemailer邮件发送

标签:乐山 红河 河南 长治 沧州 新疆 沈阳 上海

巨人网络通讯声明:本文标题《邮件发送简单例子-jsp文件》,本文关键词  ;如发现本文内容存在版权问题,烦请提供相关信息告之我们,我们将及时沟通与处理。本站内容系统采集于网络,涉及言论、版权与本站无关。
  • 相关文章
  • 收缩
    • 微信客服
    • 微信二维码
    • 电话咨询

    • 400-1100-266