module Hertz::Courier::Email

Constants

VERSION

Public Class Methods

base_mailer() click to toggle source
# File lib/hertz/courier/email.rb, line 13
def base_mailer
  (@base_mailer || '::ApplicationMailer').constantize
end
configure() { |self| ... } click to toggle source
# File lib/hertz/courier/email.rb, line 17
def configure
  yield(self)
end
deliver_notification(notification) click to toggle source
# File lib/hertz/courier/email.rb, line 21
def deliver_notification(notification)
  Hertz::Courier::Email::NotificationDeliveryJob.perform_later(notification)
end