我有一个公司电子邮件和SMTP主机。我想用Java发送电子邮件。
即我的电子邮件ID为1234@example.com
,密码为password
。
我喜欢使用此ID向其他人发送电子邮件,但是来自电子邮件应该是虚拟的noreply@example.com
我尝试使用javax mail
跟随public class SendMail {
public static void main(String[] args) {
final String username = "1234@example.com";
final String password = "password";
Properties props = new Properties();
props.put("mail.smtp.auth", "true");
props.put("mail.smtp.starttls.enable", "true");
props.put("mail.smtp.host", "smtp.example.com");
props.put("mail.smtp.port", "25");
Session session = Session.getInstance(props,
new javax.mail.Authenticator() {
protected PasswordAuthentication getPasswordAuthentication() {
return new PasswordAuthentication(username, password);
}
});
try {
Message message = new MimeMessage(session);
message.setFrom(new InternetAddress("noreply@example.com"));
message.setRecipients(Message.RecipientType.TO,
InternetAddress.parse("someone@gmail.com"));
message.setSubject("Testing Subject");
message.setText("Dear Mail Crawler,"
+ "\n\n No spam to my email, please!");
Transport.send(message);
System.out.println("Done");
} catch (MessagingException e) {
throw new RuntimeException(e);
}
}
}
我将messege.setFrom
设置为其他用户ID,但我检查了邮件。它仅显示地址为1234@example.com。
我不想创建noreply@example.com,这是否可以在Java中发送这样的电子邮件。这可以在节点邮件中找到。
答案 0 :(得分:0)
尝试添加
props.put("mail.from", "noreply@example.com");
进入你的房产。它应该在SMTP事务开始时更改MAIL FROM消息。