如何设置设备邮件发件人姓名?
我正在使用 Rails 设计 gem。 Devise 向新用户发送确认电子邮件。 Actionmailer 配置为使用我的 Gmail 帐户发送电子邮件。
该电子邮件由发件人发送:“[email protected]”,这是我的actionmailer 全局用户名配置。
我想将发件人设置为包含我的姓名“Mahmoud Khaled [电子邮件 ;protected]”
并且我肯定无法更新actionmailer用户名配置包含名称,因为它应该只是 GMAIL 用户名。
有什么帮助我如何从参数设置设计?
I am using rails devise gem. Devise sends cofirmation email to new users. Actionmailer is configured to use my gmail account to send emails.
The email is sent by sender: "[email protected]" which is my actionmailer global username configuration.
I want to set sender to include my name "Mahmoud Khaled [email protected]"
And for sure I can't update actionmailer username configration to include name because it should be only GMAIL username.
Any help how can i set devise from parameter?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
编辑您的
config/initializers/devise.rb
文件 - 它非常靠近顶部,config.mailer_sender
edit your
config/initializers/devise.rb
file - it's pretty near the top,config.mailer_sender
如果您使用gmail的stmp,则无法更改发件人地址。
Google 禁止更改发件人地址。
If you are using stmp of gmail, you cannot change the address of sender.
Google prohibited changing the address of sender.
对我来说,
Mahmoud Khaled [电子邮件受保护]
正在运行,通过电子邮件直接进入垃圾邮件文件夹(gmail、雅虎、hotmail)For me this one
Mahmoud Khaled [email protected]
is working, by emails go directly to spam folder (gmail,yahoo,hotmail)