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_id, notification, opts = {})
|
|
@user = User.find(user_id)
|
|
@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 general_notification(opts = {})
|
|
@user = params[:recipient]
|
|
@notification = params[:record].to_notification
|
|
|
|
mail(
|
|
{
|
|
to: @user.email,
|
|
subject: I18n.t('notifications.email_title')
|
|
}.merge(opts)
|
|
)
|
|
end
|
|
end
|