我想用javamail
發送郵件,但我不希望收件人回覆我。Javamail,將真實的發件人地址隱藏給收件人?
我要顯示我的真實ADRESS [email protected]
到[email protected]
。
爲reply to
,我使用:
messageMail.setReplyTo(new Address[]{new InternetAddress("[email protected]")});
但我可以看到在郵箱真正的發件人。於是我就用:
messageMail.setFrom(new InternetAddress("[email protected]", "[email protected]"));
但我可以看到在收件人郵箱中[email protected]
ADRESS ...
那麼,有沒有一種方法來發送郵件ADRESS完全隱藏到收件人嗎?
由於您使用'myrealadress @ abc.com'從地址 – vels4j
檢查我的帖子,我使用它,但它始終是可能的用戶看到郵件 –
真正ADRESS總結,當我測試發送郵件沒有在我的代碼中無法使用我的真實地址,發件人仍然可以看到我的真實地址... –