我需要一个javax设置,我将在username@domain.com收到邮件,并通过username.noreply@domain.com确认/回复用户。
我是否可以使用username.noreply@domain.com来实现这一目标,而不是真正的邮箱,但就像别名地址一样,以避免垃圾邮件。
我尝试了很多选项,但没有真正发挥作用。
message.setFrom(new InternetAddress("username.noreply@domain.com",senderName));
提供错误com.sun.mail.smtp.SMTPSendFailedException:550 5.7.1客户端无权作为此发件人发送
message.setSender(new InternetAddress("username.noreply@domain.com"));
提供错误com.sun.mail.smtp.SMTPSendFailedException:550 5.7.1客户端无权作为此发件人发送
message.setReplyTo(new Address[]{new InternetAddress("username.noreply@domain.com")});
使用此用户仍然可以将发件人视为username@domain.com,并将自动回复定向到原始发件人。
谢谢!