主页 > 知识库 > 邮件发送简单例子-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文件》,本文关键词  邮件,发送,简单,例子,-jsp,;如发现本文内容存在版权问题,烦请提供相关信息告之我们,我们将及时沟通与处理。本站内容系统采集于网络,涉及言论、版权与本站无关。
  • 相关文章
  • 下面列出与本文章《邮件发送简单例子-jsp文件》相关的同类信息!
  • 本页收集关于邮件发送简单例子-jsp文件的相关信息资讯供网民参考!
  • 推荐文章