導航:首頁 > 編程語言 > java發送郵件模板

java發送郵件模板

發布時間:2025-01-05 17:51:55

A. java實現發送郵件功能

要實現郵件發送功能需要導入包:mail.jar

/*
* Generated by MyEclipse Struts
* Template path: templates/java/JavaClass.vtl
*/
package org.demo.action;

import java.util.Properties;
import javax.mail.Message;
import javax.mail.Session;
import javax.mail.Transport;
import javax.mail.internet.InternetAddress;
import javax.mail.internet.MimeMessage;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
import org.apache.struts.action.Action;
import org.apache.struts.action.ActionForm;
import org.apache.struts.action.ActionForward;
import org.apache.struts.action.ActionMapping;
import org.demo.form.DemoForm;

public class DemoAction extends Action {

private static final String CONTENT_TYPE = "test/html;charset=GB2312";

public ActionForward execute(ActionMapping mapping, ActionForm form,
HttpServletRequest request, HttpServletResponse response) {
DemoForm demoForm = (DemoForm) form;
System.out.println("標題是" + demoForm.getBiaoti());
System.out.println("內容是" + demoForm.getNeirong());
try {
response.setContentType(CONTENT_TYPE);
String smtphost = "smtp.nj.headware.cn"; // 發送郵件伺服器
String user = "q0000015369"; // 郵件伺服器登錄用戶名
String password = "Queshuwen26"; // 郵件伺服器登錄密碼
String from = "[email protected]"; //
String to = "[email protected]"; // 收件人郵件地址
String subject = demoForm.getBiaoti(); // 郵件標題
String body = demoForm.getNeirong(); // 郵件內容
Properties props = new Properties();
props.put("mail.smtp.host", smtphost);
props.put("mail.smtp.auth", "true");
Session ssn = Session.getInstance(props, null);

MimeMessage message = new MimeMessage(ssn);

InternetAddress fromAddress = new InternetAddress(from);
message.setFrom(fromAddress);
InternetAddress toAddress = new InternetAddress(to);
message.addRecipient(Message.RecipientType.TO, toAddress);
message.setSubject(subject);
message.setText(body);
Transport transport = ssn.getTransport("smtp");

transport.connect(smtphost, user, password);

transport.sendMessage(message, message
.getRecipients(Message.RecipientType.TO));
// transport.send(message);
transport.close();
return mapping.findForward("succ");
} catch (Exception e) {
e.printStackTrace();
return mapping.findForward("fail");
}

}
}

閱讀全文

與java發送郵件模板相關的資料

熱點內容
51單片機步進電機四相運行 瀏覽:22
揚州word文檔加密研發公司 瀏覽:321
全球擺攤app在哪裡怎麼找不到 瀏覽:20
pdf文件為什麼不能列印 瀏覽:183
冷庫壓縮機耗電量 瀏覽:103
app中如何申請微信支付 瀏覽:383
python爬蟲線程池 瀏覽:962
經典演算法300句 瀏覽:528
124十進制轉二進制演算法 瀏覽:417
發郵件文件夾添加不了 瀏覽:267
外國伺服器地址和埠 瀏覽:385
android水球 瀏覽:969
魅族校準電池命令 瀏覽:107
gitlab需要什麼配置伺服器 瀏覽:238
怎樣設置文件夾不被封 瀏覽:455
伺服器管理口是干什麼的 瀏覽:655
java對齊輸出右對齊 瀏覽:912
android獲取應用程序大小 瀏覽:11
javac通信 瀏覽:910
單獨開啟資源管理器的命令是 瀏覽:562