mirror of
https://github.com/LaCasemate/fab-manager.git
synced 2025-02-11 05:54:15 +01:00
14 lines
258 B
Ruby
14 lines
258 B
Ruby
# frozen_string_literal: true
|
|
|
|
# Mailer configuration
|
|
class BaseMailer < ActionMailer::Base
|
|
default from: ->(*) { Setting.get('mail_from') }
|
|
layout 'notifications_mailer'
|
|
|
|
helper :application
|
|
|
|
def helpers
|
|
ActionController::Base.helpers
|
|
end
|
|
end
|