9 lines
289 B
Ruby
9 lines
289 B
Ruby
# frozen_string_literal: true
|
|
|
|
module NotificationMailers
|
|
class StartedSharing < NotificationMailers::Base
|
|
def set_headers(*_args) # rubocop:disable Naming/AccessorMethodName
|
|
@headers[:subject] = I18n.t("notifier.started_sharing.subject", name: @sender.name)
|
|
end
|
|
end
|
|
end
|