21
1
Fork 0
mirror of https://github.com/Evolix/chexpire.git synced 2024-06-26 02:52:52 +02:00
chexpire/test/mailers/previews/notifications_mailer_preview.rb
Colin Darie 9886e978fe
Notifier channel email
NB: domain recurrent failures notification conditions needs to be
implemented.
2018-06-04 14:18:12 +02:00

14 lines
677 B
Ruby

# Preview all emails at http://localhost:3000/rails/mailers/notifications_mailer
class NotificationsMailerPreview < ActionMailer::Preview
# Preview this email at http://localhost:3000/rails/mailers/notifications_mailer/domain_expires_soon
def domain_expires_soon
NotificationsMailer.with(notification: Notification.first).domain_expires_soon
end
# Preview this email at http://localhost:3000/rails/mailers/notifications_mailer/domain_recurrent_failures
def domain_recurrent_failures
check = Check.where("last_run_at != last_success_at").limit(1).first
NotificationsMailer.with(notification: check.notifications.first).domain_recurrent_failures
end
end