1
0
mirror of https://github.com/LaCasemate/fab-manager.git synced 2024-11-29 10:24:20 +01:00
fab-manager/app/mailers/notifications_mailer.rb

62 lines
2.7 KiB
Ruby
Raw Normal View History

# frozen_string_literal: true
# Handle most of the emails sent by the platform. Triggered by notifications
class NotificationsMailer < BaseMailer
after_action :mark_notification_as_send
2015-05-05 03:10:25 +02:00
2016-03-23 18:39:41 +01:00
def send_mail_by(notification)
@notification = notification
@recipient = notification.receiver
@attached_object = notification.attached_object
unless respond_to?(notification.notification_type)
class_eval(<<-RUBY, __FILE__, __LINE__ + 1)
def #{notification.notification_type} # def notify_admin_when_project_published
mail to: @recipient.email, # mail to: @recipient.email,
subject: t('notifications_mailer.#{notification.notification_type}.subject'), # subject: t('notifications_mailer.notify_admin_when_project_published.subject'),
template_name: '#{notification.notification_type}', # template_name: 'notify_admin_when_project_published',
content_type: 'text/html' # content_type: 'text/html'
end # end
RUBY
2016-03-23 18:39:41 +01:00
end
send(notification.notification_type)
rescue StandardError => e
Rails.logger.error "[NotificationsMailer] notification cannot be sent: #{e}"
2016-03-23 18:39:41 +01:00
end
def notify_user_when_invoice_ready
2016-03-29 18:02:40 +02:00
attachments[@attached_object.filename] = File.read(@attached_object.file)
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)
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
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
def notify_member_create_reservation
attachments[@attached_object.ics_filename] = @attached_object.to_ics.encode(Encoding::UTF_8)
mail(to: @recipient.email,
subject: t('notifications_mailer.notify_member_create_reservation.subject'),
template_name: 'notify_member_create_reservation')
end
private
def mark_notification_as_send
@notification.mark_as_send unless @notification.is_send
end
2015-05-05 03:10:25 +02:00
end