我正在尝试从我的Java代码发送电子邮件。我正在使用javax.mail库。 这是我的代码:
public class SendMail {
public void postMail(final String recipients, final String subject, final String message) throws MessagingException {
boolean debug = false;
java.security.Security.addProvider(new com.sun.net.ssl.internal.ssl.Provider());
Properties props = new Properties();
props.put("mail.transport.protocol", "smtp");
props.put("mail.smtp.starttls.enable", "true");
props.put("mail.smtp.host", "gmail-smtp.l.google.com");
props.put("mail.smtp.auth", "true");
Authenticator auth = new SMTPAuthenticator();
Session session = Session.getDefaultInstance(props, auth);
session.setDebug(debug);
try {
Message msg = new MimeMessage(session);
InternetAddress addressFrom = new InternetAddress("me@gmail.com");
msg.setFrom(addressFrom);
InternetAddress addressTo = new InternetAddress(recipients);
msg.setRecipient(Message.RecipientType.TO, addressTo);
msg.setSubject(subject);
msg.setContent(message, "text/html");
Transport.send(msg);
} catch (MessagingException e) {
System.out.println("SendMail:postMail - " + e.getMessage() + "; " + e.getCause());
}
}
private class SMTPAuthenticator extends javax.mail.Authenticator {
public PasswordAuthentication getPasswordAuthentication() {
return new PasswordAuthentication("username@gmail.com", "password");
}
}
}
一切都很糟糕但是当收件人收到邮件时,发件人不是我指定的发件人,而是我用于验证的发件人。所以在这种情况下,发件人是“username@gmail.com”而不是我用于指令message.setFrom的“me@gmail.com”。
有谁知道出了什么问题?
答案 0 :(得分:0)
您可以尝试添加
props.put("mail.from", "me@gmail.com");
不在邮件中使用,而是在SMTP事务的开头使用。
请参阅http://www.tcpipguide.com/free/t_SMTPMailTransactionProcess-3.htm