有什麼辦法可以在密碼恢復期間將「from:」地址更改爲除您使用電子郵件登錄到smtp服務器之外的其他地址?Rails設計密碼恢復來自:地址
這是我如何設置它:
應用程序/配置/環境/ development.rb
config.action_mailer.smtp_settings = {
:address => "smtp.gmail.com",
:port => 587,
:domain => 'domain.com',
:user_name => '[email protected]',
:password => 'PASSWORD',
:authentication => :plain,
:enable_starttls_auto => true
}
應用程序/初始化/ Devise.rb
config.mailer_sender = '[email protected]'
當你的密碼恢復電子郵件,「發件人:」地址是[email protected],當您回覆時,它設置爲發送到無回覆@域。我想將「from:」地址更改爲[email protected],或者如果可能的話,可以將其更改爲我在谷歌應用中設置的某個通訊組(有沒有任何方法可以進行身份驗證使用羣組電子郵件?)。有任何想法嗎?