没有实际邮箱,从username.noreply@domail.com发送邮件

时间:2017-08-25 06:54:05

标签: email javamail javax

我需要一个javax设置,我将在username@domain.com收到邮件,并通过username.noreply@domain.com确认/回复用户。

我是否可以使用username.noreply@domain.com来实现这一目标,而不是真正的邮箱,但就像别名地址一样,以避免垃圾邮件。

我尝试了很多选项,但没有真正发挥作用。

  1. message.setFrom(new InternetAddress("username.noreply@domain.com",senderName));提供错误com.sun.mail.smtp.SMTPSendFailedException:550 5.7.1客户端无权作为此发件人发送

  2. message.setSender(new InternetAddress("username.noreply@domain.com"));提供错误com.sun.mail.smtp.SMTPSendFailedException:550 5.7.1客户端无权作为此发件人发送

  3. message.setReplyTo(new Address[]{new InternetAddress("username.noreply@domain.com")});使用此用户仍然可以将发件人视为username@domain.com,并将自动回复定向到原始发件人。

  4. 谢谢!

0 个答案:

没有答案