cda65ea339
* Clean up the mailers * Disable assignment mailer if setting is turned off * Email notifications on conversation create * Specs
12 lines
349 B
Ruby
12 lines
349 B
Ruby
class ApplicationMailer < ActionMailer::Base
|
|
default from: ENV.fetch('MAILER_SENDER_EMAIL', 'accounts@chatwoot.com')
|
|
layout 'mailer'
|
|
append_view_path Rails.root.join('app/views/mailers')
|
|
|
|
# helpers
|
|
helper :frontend_urls
|
|
|
|
def smtp_config_set_or_development?
|
|
ENV.fetch('SMTP_ADDRESS', nil).present? || Rails.env.development?
|
|
end
|
|
end
|