Sha256: 4d37c1ece4b9b3a2c8bf031aa3b842dc5cbde53e330390e4bc25016184276ec4
Contents?: true
Size: 1.99 KB
Versions: 5
Compression:
Stored size: 1.99 KB
Contents
module Effective class PollsMailer < EffectivePolls.mailer_class layout EffectivePolls.mailer[:layout].presence || 'effective_polls_mailer_layout' def poll_upcoming_reminder(poll_notification, user) @assigns = effective_email_templates_assigns(poll_notification, user) mail( to: user.email, from: poll_notification.from, body: poll_notification.body, subject: poll_notification.subject ) end def poll_when_poll_starts(poll_notification, user) @assigns = effective_email_templates_assigns(poll_notification, user) mail( to: user.email, from: poll_notification.from, body: poll_notification.body, subject: poll_notification.subject ) end def poll_reminder(poll_notification, user) @assigns = effective_email_templates_assigns(poll_notification, user) mail( to: user.email, from: poll_notification.from, body: poll_notification.body, subject: poll_notification.subject ) end def poll_when_poll_ends(poll_notification, user) @assigns = effective_email_templates_assigns(poll_notification, user) mail( to: user.email, from: poll_notification.from, body: poll_notification.body, subject: poll_notification.subject ) end private # Only relevant if the effective_email_templates gem is present def effective_email_templates_assigns(poll_notification, user) raise('expected an Effective::PollNotification') unless poll_notification.kind_of?(Effective::PollNotification) raise('expected a User') unless user.kind_of?(User) poll = poll_notification.poll raise('expected poll to be persisted') unless poll&.persisted? { available_date: poll.available_date, title: poll.title, url: effective_polls.new_poll_ballot_url(poll), user: { name: user.to_s, email: user.email } } end end end
Version data entries
5 entries across 5 versions & 1 rubygems