2015-08-19 15:51:42 -04:00
|
|
|
class BaseMailer < ActionMailer::Base
|
2017-08-31 05:47:03 -04:00
|
|
|
include Gitlab::CurrentSettings
|
|
|
|
|
2017-05-25 11:22:45 -04:00
|
|
|
around_action :render_with_default_locale
|
|
|
|
|
2016-11-06 14:27:51 -05:00
|
|
|
helper ApplicationHelper
|
2017-04-03 05:55:15 -04:00
|
|
|
helper MarkupHelper
|
2015-08-19 15:35:08 -04:00
|
|
|
|
|
|
|
attr_accessor :current_user
|
2017-08-31 05:47:03 -04:00
|
|
|
helper_method :current_user, :can?, :current_application_settings
|
2015-08-19 15:35:08 -04:00
|
|
|
|
2017-03-31 11:11:28 -04:00
|
|
|
default from: proc { default_sender_address.format }
|
|
|
|
default reply_to: proc { default_reply_to_address.format }
|
2015-08-19 15:35:08 -04:00
|
|
|
|
|
|
|
def can?
|
2016-08-08 14:55:13 -04:00
|
|
|
Ability.allowed?(current_user, action, subject)
|
2015-08-19 15:35:08 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
private
|
|
|
|
|
2017-05-25 11:22:45 -04:00
|
|
|
def render_with_default_locale(&block)
|
|
|
|
Gitlab::I18n.with_default_locale(&block)
|
|
|
|
end
|
|
|
|
|
2015-08-19 15:35:08 -04:00
|
|
|
def default_sender_address
|
|
|
|
address = Mail::Address.new(Gitlab.config.gitlab.email_from)
|
|
|
|
address.display_name = Gitlab.config.gitlab.email_display_name
|
|
|
|
address
|
|
|
|
end
|
|
|
|
|
|
|
|
def default_reply_to_address
|
|
|
|
address = Mail::Address.new(Gitlab.config.gitlab.email_reply_to)
|
|
|
|
address.display_name = Gitlab.config.gitlab.email_display_name
|
|
|
|
address
|
|
|
|
end
|
|
|
|
end
|