Hertz::Courier::Email

Gem Version Dependency Status Code Climate

This is a Hertz courier for sending notifications to your users via email throuh ActionMailer.

Installation

Add this line to your application's Gemfile:

gem 'hertz-courier-email'

And then execute:

$ bundle

Or install it yourself as:

$ gem install hertz-courier-email

Then, run the installer generator:

$ rails g hertz:courier:email:install

You will also need to expose the hertz_email method in your receiver class. This can be either a single email or an array of emails:

class User < ActiveRecord::Base
  include Hertz::Notifiable

  def hertz_email
    email
  end
end

If #hertz_email returns an empty value (i.e. false, nil, an empty string or an empty array) at the time the job is executed, the notification will not be delivered. This allows you to programmatically enable/disable email notifications for a user:

class User
  include Hertz::Notifiable

  def hertz_email
    email if email_verified?
  end
end

Or even to choose what addresses they can receive emails to:

class User
  include Hertz::Notifiable

  def hertz_email
    emails.select(&:verified?)
  end
end

Usage

In order to use this courier, add :email to deliver_by in the notification model(s):

class CommentNotification < Hertz::Notification
  deliver_by :email
end

Now, add the email_subject method in your notification class:

class CommentNotification < Hertz::Notification
  def email_subject
    'You have a new comment!'
  end
end

Finally, you should create a template for every notification you send by email. For CommentNotification you'd create a template at app/views/hertz/courier/email/notification_mailer/comment_notification.html.erb:

<p>Hey <%= @notification.receiver.hertz_email %>,</p>
<p>you've got a new comment!</p>

As you can see, templates have access to the @notification instance variable.

NOTE: This courier uses the deliveries API to prevent double deliveries.

Contributing

Bug reports and pull requests are welcome on GitHub at https://github.com/alessandro1997/hertz-courier-email.

License

The gem is available as open source under the terms of the MIT License.