2015-12-14 16:09:20 +01:00
|
|
|
class ApplicationMailer < ActionMailer::Base
|
2023-01-16 11:34:36 +01:00
|
|
|
include MailerDolistConcern
|
2023-01-10 15:36:58 +01:00
|
|
|
include MailerMonitoringConcern
|
2023-01-23 14:56:05 +01:00
|
|
|
include BalancedDeliveryConcern
|
2023-01-10 00:40:16 +01:00
|
|
|
|
2019-06-21 09:50:33 +02:00
|
|
|
helper :application # gives access to all helpers defined within `application_helper`.
|
2020-07-23 15:09:47 +02:00
|
|
|
default from: "#{APPLICATION_NAME} <#{CONTACT_EMAIL}>"
|
2015-12-14 16:09:20 +01:00
|
|
|
layout 'mailer'
|
2019-07-17 14:41:37 +02:00
|
|
|
|
|
|
|
# Attach the procedure logo to the email (if any).
|
|
|
|
# Returns the attachment url.
|
|
|
|
def attach_logo(procedure)
|
2019-08-28 13:11:58 +02:00
|
|
|
if procedure.logo.attached?
|
|
|
|
logo_filename = procedure.logo.filename.to_s
|
|
|
|
attachments.inline[logo_filename] = procedure.logo.download
|
2019-08-28 14:27:41 +02:00
|
|
|
attachments[logo_filename].url
|
2019-07-17 14:41:37 +02:00
|
|
|
end
|
2019-08-28 13:11:58 +02:00
|
|
|
rescue StandardError => e
|
|
|
|
# A problem occured when reading logo, maybe the logo is missing and we should clean the procedure to remove logo reference ?
|
2021-01-28 14:49:22 +01:00
|
|
|
Sentry.capture_exception(e, extra: { procedure_id: procedure.id })
|
2019-08-28 13:11:58 +02:00
|
|
|
nil
|
2019-07-17 14:41:37 +02:00
|
|
|
end
|
2015-12-14 16:09:20 +01:00
|
|
|
end
|