我有一个程序,我有许多用户,每个用户都可以从不同的电子邮件帐户发送电子邮件。
当我尝试使用JavaMail发送电子邮件时。它们总是由首先发送电子邮件的用户的帐户发送出去。
user1 = new User("dummy-email@gmail.com", "dumpass12");
user2 = new User("second-dummy@gmail.com", "secondpass12");
user1.sendMail(toAddress, subject, body);
user2.sendMail(toAddress, subject, body);
现在当我做这样的事情时,第二个用户将发送一条消息,但它将作为user1来自SAME邮箱(即两条消息都来自dummy-email@gmail.com)。
有人可以向我解释为什么会这样吗?我必须以某种方式关闭连接吗?如何发送这两封电子邮件并让它们来自不同的帐户?请帮帮我。
这是我的代码,它实际上发送连接到用户的Gmail帐户的电子邮件。
public void sendMail(String toAddress, String subject, String body){
Properties props = new Properties();
props.put("mail.smtp.host", "smtp.gmail.com");
props.put("mail.smtp.socketFactory.port", "465");
props.put("mail.smtp.socketFactory.class","javax.net.ssl.SSLSocketFactory");
props.put("mail.smtp.auth", "true");
props.put("mail.smtp.port", "465");
Session session = Session.getDefaultInstance(props,
new javax.mail.Authenticator()
{
protected PasswordAuthentication getPasswordAuthentication()
{ return new PasswordAuthentication(getUsername(),getPassword()); }
});
try {
Message message = new MimeMessage(session);
message.setFrom(new InternetAddress(getUsername()));
message.setRecipients(Message.RecipientType.TO,
InternetAddress.parse(toAddress));
message.setSubject(subject);
message.setContent(body, "text/html");
Transport.send(message);
} catch (MessagingException e) {
throw new RuntimeException(e);
}
}
答案 0 :(得分:3)
用Session.getInstance()替换Session.getDefaultInstance()。要了解原因,请仔细阅读这些方法的javadoc。