Low commit activity in last 3 years
No release in over a year
Custom ActionMailer delivery method for sending emails via GOV.UK Notify API
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Development

~> 2.2
~> 3.0.5
~> 10.0
~> 3.5

Runtime

 Project Readme

GovukNotifyRails

Custom ActionMailer delivery to send emails via the API client for GOV.UK Notify.

Gem Version

Installation

Prior to usage an account must be created through the GOV.UK Notify admin console. This will provide the API credentials needed in you application.

You can then install the gem or require it in your application.

gem 'govuk_notify_rails'

Please note the last version of this gem makes use of the notifications-ruby-client gem version >= 2.9.0

You can use a specific version in your Gemfile if you want, granting there are no breaking changes in the interface.

In your app, you will need to add the delivery method, and set the api_key, for example with an initializer:

ActionMailer::Base.add_delivery_method :govuk_notify, GovukNotifyRails::Delivery,
  api_key: ENV['GOVUK_NOTIFY_API_KEY']

Usage

To send emails through GOV.UK Notify, create your mailers like usual but inheriting from GovukNotifyRails::Mailer. Then just use mail() as with any other ActionMailer passing the recipient email.

The template ID is mandatory, but the reference and personalisation are optional.

class NotifyMailer < GovukNotifyRails::Mailer
  #
  # Define methods as usual, and set the template and personalisation accordingly
  #
  def my_test_email(user)
    set_template('uuid')

    # Optionally, you can set a reference and a reply_to
    # 
    set_reference('my_reference_string')
    set_email_reply_to('uuid')
    
    set_personalisation(
      full_name: user.full_name,
      address: user.address
    )
    
    mail(to: user.email)
  end
end

After a successful delivery, you can inspect the returned Notifications::Client:ResponseNotification for details of the delivery. For example:

response = NotifyMailer.my_test_email(user).deliver_now
response.govuk_notify_response.id  # notification UUID
response.govuk_notify_response.template  # id, version and uri of the template

If the mail should be sent to multiple recipients, multiple API calls are made to GOV.UK Notify. You can expect each of the responses in a similar way:

response = NotifyMailer.my_test_email(users).deliver_now
response.govuk_notify_responses.first.id  # notification UUID
response.govuk_notify_responses.second.template  # id, version and uri of the template

For more information, refer to the Notify documentation.

Mailer previewing

You can also create mailer previews as usual. The preview will however be a sample string as the actual template is hosted in the GOV.UK Notify website.

For example:

class NotifyMailerPreview < ActionMailer::Preview
  
  def my_test_email
    user = User.first
    NotifyMailer.my_test_email(user)
  end
  
end

With your local rails server running you can browse to http://localhost:3000/rails/mailers to view a list of current email templates

Contributing

Bug reports and pull requests are welcome.

  1. Fork the project
  2. Create your feature branch (git checkout -b my-new-feature)
  3. Commit until you are happy with your contribution (git commit -am 'Add some feature')
  4. Push the branch (git push origin my-new-feature)
  5. Make sure your changes are covered by tests, so that we don't break it unintentionally in the future.
  6. Create a new pull request.

License

Released under the MIT License. Copyright (c) 2015-2020 Ministry of Justice.