除了用于登录 smtp 服务器的电子邮件之外,还有什么方法可以将密码恢复期间的“发件人:”地址更改为其他地址?
这是我的设置方式:
应用程序/配置/环境/development.rb
config.action_mailer.smtp_settings = {
:address => "smtp.gmail.com",
:port => 587,
:domain => 'domain.com',
:user_name => 'USERNAME@domain.com',
:password => 'PASSWORD',
:authentication => :plain,
:enable_starttls_auto => true
}
应用程序/初始化程序/Devise.rb
config.mailer_sender = 'no-reply@domain.com'
当您收到密码恢复电子邮件时,“发件人:”地址是 USERNAME@domain.com,当您点击回复时,它被设置为发送到 no-reply@domain。我也想将“发件人:”地址更改为 no-reply@domain.com,或者如果可能的话,可以将其更改为我在谷歌应用程序中设置的通讯组之一(有什么方法可以进行身份验证使用群组电子邮件?)。有任何想法吗?