JavaMail API, Gmail-Auth and setFrom(JavaMail API、Gmail-Auth 和 setFrom)
问题描述
对于这个应用程序,我遵循这个例子:
for this app i'm following this example:
http://pipoltek.blogspot.com/2008/02/sending-mail-using-gmail-smtp-server.html
我可以发送电子邮件,看起来不错.....但我想使用此修改发件人电子邮件:
I can send emails, it looks good.....but i want to modify the sender email using this:
MimeMessage msg = new MimeMessage(mailSession);
msg.setFrom(new InternetAddress("baba-jaga@gmail.com"));
baba-jaga@gmail.com 是虚拟电子邮件,不是我的 :)
baba-jaga@gmail.com is dummy E-Mail, is not mine :)
当我使用 setFrom 时,我会收到来自这封电子邮件的电子邮件,我用它来进行身份验证.身份验证是禁用 setFrom 方法的原因吗?
When t use setFrom, i recive the email from this email, which i use to authenticate. Is the authentication the reason, which disable the setFrom method?
我需要更改发件人"电子邮件,因为我希望收件人向我发送重播到另一个电子邮件地址.
I need to change the "from" email, because i want, that the recipient send me an replay to another email adress.
推荐答案
Google 的 SMTP 服务器阻止使用来自已验证帐户的地址以外的发件人地址.这是一种防止所谓的欺骗"的安全措施.也许您可以尝试将回复设置为另一个值,看看 Google 是否允许这样做.
Google's SMTP server is preventing using a from address other than the one belonging to the account that has been authenticated. This is a security measure to prevent what is known as "spoofing". Perhaps you can try setting the reply-to to another value and see if Google will allow that.
这篇关于JavaMail API、Gmail-Auth 和 setFrom的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:JavaMail API、Gmail-Auth 和 setFrom
基础教程推荐
- 如何对 Java Hashmap 中的值求和 2022-01-01
- REST Web 服务返回 415 - 不支持的媒体类型 2022-01-01
- 修改 void 函数的输入参数,然后读取 2022-01-01
- Struts2 URL 无法访问 2022-01-01
- 无法复制:“比较方法违反了它的一般约定!" 2022-01-01
- RabbitMQ:消息保持“未确认"; 2022-01-01
- Spring AOP错误无法懒惰地为此建议构建thisJoinPoin 2022-09-13
- 问题http://apache.org/xml/features/xinclude测试日志4j 2 2022-01-01
- 使用堆栈算法进行括号/括号匹配 2022-01-01
- 存储 20 位数字的数据类型 2022-01-01
