6a2f4e6673
* Chore: Ability to configure Mailer sender emails [#339] fixes : #339 fixes : #330 * update the documentation
7 lines
178 B
Ruby
7 lines
178 B
Ruby
class ApplicationMailer < ActionMailer::Base
|
|
default from: ENV.fetch('MAILER_SENDER_EMAIL', 'accounts@chatwoot.com')
|
|
layout 'mailer'
|
|
|
|
# helpers
|
|
helper :frontend_urls
|
|
end
|