문제

I want Devise to send emails from specified address, not from ActionMailer default. Is it posible?

도움이 되었습니까?

해결책

config.mailer_sender property in config/devise/devise.rb allows you to specify that. If you don't have config/devise/devise.rb, run devise:install generator.

다른 팁

In Rails 4, set config.mailer_sender in config/initializers/devise.rb like this:

config.mailer_sender = 'Some One <no-reply@example.com>'

In case the file is not present , you can create a file at 'config/initializers/devise.rb' and add -

Devise.setup do |config|
  config.mailer_sender = SUPPORT_EMAIL
end
라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top