我已經編寫了發送郵件的java代碼,當我使用端口號587,並且仍然運行時沒有停止,當我使用端口465時,會發出異常。 我使用Tomcat,而我不知道是否有配置。 Mail.javaJava發送郵件失敗,與SMTP SMTP郵件
public class Mail {
String to;
String from;
String message;
String subject;
String smtpServ;
//getter and setter
public int sendMail(){
try
{
Properties props = System.getProperties();
props.put("mail.transport.protocol", "smtp");
props.put("mail.smtp.starttls.enable","true");
props.put("mail.smtp.host","smtp.gmail.com");
props.put("mail.smtp.auth", "true");
props.put("mail.smtp.port", "456");
Authenticator auth = new SMTPAuthenticator();
Session session = Session.getInstance(props, auth);
Message msg = new MimeMessage(session);
msg.setFrom(new InternetAddress(from));
msg.setRecipients(Message.RecipientType.TO, InternetAddress.parse(to,false));
msg.setSubject(subject);
msg.setText(message);
msg.setHeader("MyMail", "Mr. XYZ");
msg.setSentDate(new Date());
Transport.send(msg);
System.out.println("Message sent to"+to+" OK.");
return 0;
}
catch (Exception ex)
{
ex.printStackTrace();
System.out.println("Exception "+ex);
return -1;
}
}
}
public class SMTPAuthenticator extends javax.mail.Authenticator {
@Override
public PasswordAuthentication getPasswordAuthentication() {
String username = "***@gmail.com"; // specify your email id here (sender's email id)
String password = "***"; // specify your password here
return new PasswordAuthentication(username, password);
}
}
的index.jsp:在
<body>
<form action="sendMail.jsp" method="POST">
<input type="text" name="to" value="" />
<input type="text" name="subject" value="" />
<textarea name="message" rows="8" cols="30">
</textarea>
<input type="submit" value="Send Mail" />
sendMail.jsp
<jsp:useBean id="mail" scope="session" class="mailing.Mail" />
<jsp:setProperty name="mail" property="to" param="to" />
<jsp:setProperty name="mail" property="from" value="****@gmail.com" />
<jsp:setProperty name="mail" property="smtpServ" value="smtp.gmail.com" />
<jsp:setProperty name="mail" property="subject" param="subject" />
<jsp:setProperty name="mail" property="message" param="message" />
<%@ page language="java" contentType="text/html; charset=ISO-8859-1"
pageEncoding="ISO-8859-1"%>
...
<body>
<%
String to = mail.getTo();
int result;
result = mail.sendMail();
}
%>
它給了我錯誤得到歡迎msg – ftning 2013-05-09 16:20:34
它的工作原理,thx :) – ftning 2013-05-09 22:39:49
gr8。古德聽說:) – 2013-05-10 04:59:21