精品熟女碰碰人人a久久,多姿,欧美欧美a v日韩中文字幕,日本福利片秋霞国产午夜,欧美成人禁片在线观看

JSP 發送郵件

jsp 發送郵件

雖然使用jsp實現郵件發送功能很簡單,但是需要有javamail api,并且需要安裝javabean activation framework。

  • 您可以從 java 網站下載最新版本的 javamail,打開網頁右側有個 downloads 鏈接,點擊它下載。
  • 您可以從 java 網站下載最新版本的 jaf(版本 1.1.1)

你也可以使用本站提供的下載鏈接:

下載并解壓這些文件,在根目錄下,您將會看到一系列jar包。將mail.jar包和activation.jar包加入classpath變量中。

發送一封簡單的郵件

這個例子展示了如何從您的機器發送一封簡單的郵件。它假定localhost已經連接至網絡并且有能力發送一封郵件。與此同時,請再一次確認mail.jar包和activation.jar包已經添加進classpath變量中。

<%@ page import="java.io.*,java.util.*,javax.mail.*"%>
<%@ page import="javax.mail.internet.*,javax.activation.*"%>
<%@ page import="javax.servlet.http.*,javax.servlet.*" %>
<%
   string result;
   // 收件人的電子郵件
   string to = "abcd@gmail.com";

   // 發件人的電子郵件
   string from = "mcmohd@gmail.com";

   // 假設你是從本地主機發送電子郵件
   string host = "localhost";

   // 獲取系統屬性對象
   properties properties = system.getproperties();

   // 設置郵件服務器
   properties.setproperty("mail.smtp.host", host);

   // 獲取默認的session對象。
   session mailsession = session.getdefaultinstance(properties);

   try{
      // 創建一個默認的mimemessage對象。
      mimemessage message = new mimemessage(mailsession);
      // 設置 from: 頭部的header字段
      message.setfrom(new internetaddress(from));
      // 設置 to: 頭部的header字段
      message.addrecipient(message.recipienttype.to,
                               new internetaddress(to));
      // 設置 subject: header字段
      message.setsubject("this is the subject line!");
      // 現在設置的實際消息
      message.settext("this is actual message");
      // 發送消息
      transport.send(message);
      result = "sent message successfully....";
   }catch (messagingexception mex) {
      mex.printstacktrace();
      result = "error: unable to send message....";
   }
%>
<html>
<head>
<title>send email using jsp</title>
</head>
<body>
<center>
<h1>send email using jsp</h1>
</center>
<p align="center">
<% 
   out.println("result: " + result + "\n");
%>
</p>
</body>
</html>

現在訪問http://localhost:8080/sendemail.jsp,它將會發送一封郵件給abcd@gmail.com 并顯示如下結果:

send email using jsp
result: sent message successfully....

如果想要把郵件發送給多人,下面列出的方法可以用來指明多個郵箱地址:

void addrecipients(message.recipienttype type, 
                   address[] addresses)
throws messagingexception

參數的描述如下:

  • type:這個值將會被設置成 to(收件人)、cc 或 bcc。cc 表示 carbon copy(抄送),bcc 表示 blind carbon copy(密件抄送)。例子程序中使用的是 to。
  • addresses:這是一個郵箱地址的數組,當指定郵箱地址時需要使用internetaddress()方法。

發送一封html郵件

這個例子發送一封簡單的html郵件。它假定您的localhost已經連接至網絡并且有能力發送郵件。與此同時,請再一次確認mail.jar包和activation.jar包已經添加進classpath變量中。

這個例子和前一個例子非常相似,不過在這個例子中我們使用了setcontent()方法,將"text/html"做為第二個參數傳給它,用來表明消息中包含了html內容。

<%@ page import="java.io.*,java.util.*,javax.mail.*"%>
<%@ page import="javax.mail.internet.*,javax.activation.*"%>
<%@ page import="javax.servlet.http.*,javax.servlet.*" %>
<%
   string result;
   // 收件人的電子郵件
   string to = "abcd@gmail.com";

   // 發件人的電子郵件
   string from = "mcmohd@gmail.com";

   // 假設你是從本地主機發送電子郵件
   string host = "localhost";

   // 獲取系統屬性對象
   properties properties = system.getproperties();

   // 設置郵件服務器
   properties.setproperty("mail.smtp.host", host);

   // 獲取默認的session對象。
   session mailsession = session.getdefaultinstance(properties);

   try{
      // 創建一個默認的mimemessage對象。
      mimemessage message = new mimemessage(mailsession);
      // 設置 from: 頭部的header字段
      message.setfrom(new internetaddress(from));
      // 設置 to: 頭部的header字段
      message.addrecipient(message.recipienttype.to,
                               new internetaddress(to));
      // 設置 subject: header字段
      message.setsubject("this is the subject line!");
     
      // 設置 html消息
      message.setcontent("<h1>this is actual message</h1>",
                            "text/html" );
      // 發送消息
      transport.send(message);
      result = "sent message successfully....";
   }catch (messagingexception mex) {
      mex.printstacktrace();
      result = "error: unable to send message....";
   }
%>
<html>
<head>
<title>send html email using jsp</title>
</head>
<body>
<center>
<h1>send email using jsp</h1>
</center>
<p align="center">
<% 
   out.println("result: " + result + "\n");
%>
</p>
</body>
</html>

現在你可以嘗試使用以上jsp文件來發送html消息的電子郵件。

在郵件中包含附件

這個例子告訴我們如何發送一封包含附件的郵件。

<%@ page import="java.io.*,java.util.*,javax.mail.*"%>
<%@ page import="javax.mail.internet.*,javax.activation.*"%>
<%@ page import="javax.servlet.http.*,javax.servlet.*" %>
<%
   string result;
   // 收件人的電子郵件
   string to = "abcd@gmail.com";

   // 發件人的電子郵件
   string from = "mcmohd@gmail.com";

   // 假設你是從本地主機發送電子郵件
   string host = "localhost";

   // 獲取系統屬性對象
   properties properties = system.getproperties();

   // 設置郵件服務器
   properties.setproperty("mail.smtp.host", host);

   // 獲取默認的session對象。
   session mailsession = session.getdefaultinstance(properties);

   try{
      // 創建一個默認的mimemessage對象。
      mimemessage message = new mimemessage(mailsession);

      // 設置 from: 頭部的header字段
      message.setfrom(new internetaddress(from));

      // 設置 to: 頭部的header字段
      message.addrecipient(message.recipienttype.to,
                               new internetaddress(to));

      // 設置 subject: header字段
      message.setsubject("this is the subject line!");

      // 創建消息部分
      bodypart messagebodypart = new mimebodypart();

      // 填充消息
      messagebodypart.settext("this is message body");
      
      // 創建多媒體消息
      multipart multipart = new mimemultipart();

      // 設置文本消息部分
      multipart.addbodypart(messagebodypart);

      // 附件部分
      messagebodypart = new mimebodypart();
      string filename = "file.txt";
      datasource source = new filedatasource(filename);
      messagebodypart.setdatahandler(new datahandler(source));
      messagebodypart.setfilename(filename);
      multipart.addbodypart(messagebodypart);

      // 發送完整消息
      message.setcontent(multipart );

      // 發送消息
      transport.send(message);
      string title = "send email";
      result = "sent message successfully....";
   }catch (messagingexception mex) {
      mex.printstacktrace();
      result = "error: unable to send message....";
   }
%>
<html>
<head>
<title>send attachement email using jsp</title>
</head>
<body>
<center>
<h1>send attachement email using jsp</h1>
</center>
<p align="center">
<% 
   out.println("result: " + result + "\n");
%>
</p>
</body>
</html>

用戶認證部分

如果郵件服務器需要用戶名和密碼來進行用戶認證的話,可以像下面這樣來設置:

 properties.setproperty("mail.user", "myuser");
 properties.setproperty("mail.password", "mypwd");

使用表單發送郵件

使用html表單接收一封郵件,并通過request對象獲取所有郵件信息:

string to = request.getparameter("to");
string from = request.getparameter("from");
string subject = request.getparameter("subject");
string messagetext = request.getparameter("body");

獲取以上信息后,您就可以使用前面提到的例子來發送郵件了。

相關文章