mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2024-11-11 01:44:34 +08:00
37 lines
905 B
Ruby
37 lines
905 B
Ruby
# frozen_string_literal: true
|
|
|
|
class AppMailer < Devise::Mailer
|
|
helper :application, :mailer, :input_sanitize
|
|
include Devise::Controllers::UrlHelpers
|
|
default template_path: 'users/mailer'
|
|
default from: ENV['MAIL_FROM']
|
|
default reply: ENV['MAIL_REPLYTO']
|
|
|
|
def notification(user, notification, opts = {})
|
|
@user = user
|
|
@notification = notification
|
|
subject =
|
|
if notification.deliver?
|
|
I18n.t('notifications.deliver.email_subject')
|
|
else
|
|
I18n.t('notifications.email_title')
|
|
end
|
|
headers = {
|
|
to: @user.email,
|
|
subject: subject
|
|
}.merge(opts)
|
|
mail(headers)
|
|
end
|
|
|
|
def system_notification(user, system_notification, opts = {})
|
|
@user = user
|
|
@system_notification = system_notification
|
|
|
|
headers = {
|
|
to: @user.email,
|
|
subject: t('system_notifications.emails.subject')
|
|
}.merge(opts)
|
|
|
|
mail(headers)
|
|
end
|
|
end
|