lib/mail/notify/mailer.rb in mail-notify-0.2.1 vs lib/mail/notify/mailer.rb in mail-notify-0.2.2
- old
+ new
@@ -2,13 +2,17 @@
module Mail
module Notify
class Mailer < ActionMailer::Base
def view_mail(template_id, headers)
+ raise ArgumentError, 'You must specify a template ID' if template_id.blank?
+
mail(headers.merge(template_id: template_id))
end
def template_mail(template_id, headers)
+ raise ArgumentError, 'You must specify a template ID' if template_id.blank?
+
mail(headers.merge(body: '', subject: '', template_id: template_id))
end
end
end
end