默认 :from 在使用 gmail SMTP 时不起作用
在我的 Rails 应用程序中,我使用 gmail SMTP 设置。但是即使我给出了这个 ActionMailer::Base.default :from =>我的环境文件中的 '[email protected]'
,电子邮件中显示的发件人地址是 user_name 字段我提供了 SMTP 设置和密码。
有没有办法显示任何自定义电子邮件地址?
如果你没有明白我的问题,请发表评论
In my rails application, I am using gmail SMTP settings.But even though I gave this ActionMailer::Base.default :from => '[email protected]'
in my environments file , The from address which showing in the email is the user_name field which I gave in the SMTP settings along with the password.
Is there any way to display any custom email address?
Pls comment If u didn't get my question
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
从您真正希望成为发件人的 gmail 账户发送、使用非 gmail SMTP 服务器(允许设置其他发件人)或使用 Amazon SES。
Either send from the gmail account you really want to be the sender, use a non-gmail SMTP server (that allows setting other senders), or use Amazon SES.
尝试设置 :sender 而不是 :from。
Try setting :sender instead of :from.