2019-10-02 14:37:47 +02:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
# Handle most of the emails sent by the platform. Triggered by notifications
|
2015-05-05 03:10:25 +02:00
|
|
|
class NotificationsMailer < NotifyWith::NotificationsMailer
|
2020-06-08 15:08:07 +02:00
|
|
|
default from: ->(*) { Setting.get('email_from') }
|
2015-05-05 03:10:25 +02:00
|
|
|
layout 'notifications_mailer'
|
|
|
|
|
|
|
|
helper :application
|
|
|
|
|
2016-03-23 18:39:41 +01:00
|
|
|
def send_mail_by(notification)
|
|
|
|
@notification = notification
|
|
|
|
@recipient = notification.receiver
|
|
|
|
@attached_object = notification.attached_object
|
|
|
|
|
2019-10-02 14:37:47 +02:00
|
|
|
unless respond_to?(notification.notification_type)
|
|
|
|
class_eval %{
|
2016-03-23 18:39:41 +01:00
|
|
|
def #{notification.notification_type}
|
|
|
|
mail to: @recipient.email,
|
|
|
|
subject: t('notifications_mailer.#{notification.notification_type}.subject'),
|
|
|
|
template_name: '#{notification.notification_type}',
|
|
|
|
content_type: 'text/html'
|
|
|
|
end
|
2019-10-02 14:37:47 +02:00
|
|
|
}, __FILE__, __LINE__ - 7
|
2016-03-23 18:39:41 +01:00
|
|
|
end
|
|
|
|
|
|
|
|
send(notification.notification_type)
|
2021-10-21 15:07:18 +02:00
|
|
|
rescue StandardError => e
|
2022-07-26 17:27:33 +02:00
|
|
|
Rails.logger.error "[NotificationsMailer] notification cannot be sent: #{e}"
|
2016-03-23 18:39:41 +01:00
|
|
|
end
|
|
|
|
|
2015-05-05 03:10:25 +02:00
|
|
|
def helpers
|
|
|
|
ActionController::Base.helpers
|
|
|
|
end
|
2016-03-23 18:39:41 +01:00
|
|
|
|
|
|
|
def notify_user_when_invoice_ready
|
2016-03-29 18:02:40 +02:00
|
|
|
attachments[@attached_object.filename] = File.read(@attached_object.file)
|
2019-10-02 14:37:47 +02:00
|
|
|
mail(to: @recipient.email,
|
|
|
|
subject: t('notifications_mailer.notify_member_invoice_ready.subject'),
|
|
|
|
template_name: 'notify_member_invoice_ready')
|
2016-03-23 18:39:41 +01:00
|
|
|
end
|
|
|
|
|
|
|
|
def notify_user_when_avoir_ready
|
2016-03-29 18:02:40 +02:00
|
|
|
attachments[@attached_object.filename] = File.read(@attached_object.file)
|
2019-10-02 14:37:47 +02:00
|
|
|
mail(to: @recipient.email,
|
|
|
|
subject: t('notifications_mailer.notify_member_avoir_ready.subject'),
|
|
|
|
template_name: 'notify_member_avoir_ready')
|
2016-03-23 18:39:41 +01:00
|
|
|
end
|
2021-01-19 16:47:51 +01:00
|
|
|
|
|
|
|
def notify_user_when_payment_schedule_ready
|
|
|
|
attachments[@attached_object.filename] = File.read(@attached_object.file)
|
|
|
|
mail(to: @recipient.email,
|
|
|
|
subject: t('notifications_mailer.notify_member_payment_schedule_ready.subject'),
|
|
|
|
template_name: 'notify_member_payment_schedule_ready')
|
|
|
|
end
|
2022-05-10 16:48:58 +02:00
|
|
|
|
|
|
|
def notify_member_create_reservation
|
2022-05-17 13:14:39 +02:00
|
|
|
attachments[@attached_object.ics_filename] = @attached_object.to_ics.encode(Encoding::ISO_8859_15)
|
2022-05-10 16:48:58 +02:00
|
|
|
mail(to: @recipient.email,
|
|
|
|
subject: t('notifications_mailer.notify_member_create_reservation.subject'),
|
|
|
|
template_name: 'notify_member_create_reservation')
|
|
|
|
end
|
2015-05-05 03:10:25 +02:00
|
|
|
end
|