Inherit the MandrillMailer class in your existing Rails mailers to send transactional emails through Mandrill using their template-based emails.
Add this line to your application's Gemfile:
gem 'mandrill_mailer'
And then execute:
$ bundle install
Or install it yourself as:
$ gem install mandrill_mailer
Add the following to your mail.rb
in your Rails app's config/initializers
directory:
ActionMailer::Base.smtp_settings = {
:address => "smtp.mandrillapp.com",
:port => 587,
:user_name => ENV['MANDRILL_USERNAME'],
:password => ENV['MANDRILL_API_KEY'],
:domain => 'heroku.com'
}
ActionMailer::Base.delivery_method = :smtp
MandrillMailer.configure do |config|
config.api_key = ENV['MANDRILL_API_KEY']
config.deliver_later_queue_name = :default
end
You don't need to add the ActionMailer stuff unless you're still using ActionMailer emails.
This uses the Mandrill SMTP servers. If you're using template-based emails
through the Mandrill API you only need the MandrillMailer.configure
portion.
Do not forget to setup the environment (ENV
) variables on your server instead
of hardcoding your Mandrill username and password in the mail.rb
initializer.
You will also need to set default_url_options
for the mailer, similar to ActionMailer
in your environment config files in config/environments
:
config.mandrill_mailer.default_url_options = { :host => 'localhost' }
Creating a new Mandrill mailer is similar to a typical Rails one:
class InvitationMailer < MandrillMailer::TemplateMailer
default from: 'support@example.com'
def invite(invitation)
# in this example `invitation.invitees` is an Array
invitees = invitation.invitees.map { |invitee| { email: invitee.email, name: invitee.name } }
mandrill_mail(
template: 'group-invite',
subject: I18n.t('invitation_mailer.invite.subject'),
to: invitees,
# to: invitation.email,
# to: { email: invitation.email, name: 'Honored Guest' },
vars: {
'OWNER_NAME' => invitation.owner_name,
'PROJECT_NAME' => invitation.project_name
},
important: true,
inline_css: true,
recipient_vars: invitation.invitees.map do |invitee|
{ invitee.email =>
{
'INVITEE_NAME' => invitee.name,
'INVITATION_URL' => new_invitation_url(
invitee.email,
secret: invitee.secret_code
)
}
}
end
)
end
end
-
#default:
:from
- set the default from email address for the mailer. Defaults to'example@email.com'
.:from_name
- set the default from name for the mailer. If not set, defaults to from email address. Setting :from_name in the .mandrill_mail overrides the default.:merge_vars
- set some defaultmerge_vars
that will be sent with every mailer method (inglobal_merge_vars
so there's no risk of collision with method-specificmerge_vars
.:view_content_link
- set a default to be able to access individual mailer messages in the Mandrill dashboard. Defaults tofalse
.
-
.mandrill_mail
-
:template
(required) - Template slug from within Mandrill (for backwards-compatibility, the template name may also be used but the immutable slug is preferred) -
:subject
- Subject of the email. If no subject supplied, it will fall back to the template default subject from within Mandrill -
:to
(required) - Accepts an email String, a Hash with :name and :email keys, or an Array of Hashes with :name, :email, and :type keys- examples:
'example@domain.com'
{ email: 'someone@email.com', name: 'Bob Bertly' }
[{ email: 'someone@email.com', name: 'Bob Bertly' }, { email: 'other@email.com', name: 'Claire Nayo' }]
[{ email: 'someone@email.com', name: 'Bob Bertly', type: 'to'}, { email: 'secret_recipient1@email.com', name: 'Secret Recipient One', type: 'bcc'}, { email: 'secret_recipient2@email.com', name: 'Secret Recipient Two', type: 'bcc'}]
- examples:
-
:vars
- A Hash of merge tags made available to the email. Use them in the email by wrapping them in*||*
. For example{'OWNER_NAME' => 'Suzy'}
is used by doing:*|OWNER_NAME|*
in the email template within Mandrill -
:recipient_vars
- Similar to:vars
, this is a Hash of merge vars specific to a particular recipient. Use this if you are sending batch transactions and hence need to send multiple emails at one go. ex.[{'someone@email.com' => {'INVITEE_NAME' => 'Roger'}}, {'another@email.com' => {'INVITEE_NAME' => 'Tommy'}}]
-
:template_content
- A Hash of values and content for Mandrill editable content blocks. In MailChimp templates there are editable regions with 'mc:edit' attributes that look like:<div mc:edit="header">My email content</div>
You can insert content directly into these fields by passing a Hash{'header' => 'my email content'}
-
:headers
- Extra headers to add to the message (currently onlyReply-To
andX-*
headers are allowed) {"...": "..."} -
:bcc
- Add an email to bcc to -
:tags
- Array of Strings to tag the message with. Stats are accumulated using tags, though we only store the first 100 we see, so this should not be unique or change frequently. Tags should be 50 characters or less. Any tags starting with an underscore are reserved for internal use and will cause errors. -
:google_analytics_domains
- Array of Strings indicating for which any matching URLs will automatically have Google Analytics parameters appended to their query string automatically. -
:google_analytics_campaign
- String indicating the value to set for the utm_campaign tracking parameter. If this isn't provided the email's from address will be used instead. -
:important
- whether or not this message is important, and should be delivered ahead of non-important messages. -
:inline_css
- whether or not to automatically inline all CSS styles provided in the message HTML - only for HTML documents less than 256KB in size. -
:merge_language
- the merge tag language to use when evaluating merge tags, either 'mailchimp' or 'handlebars'. Default is 'mailchimp'. -
:attachments
- An array of file objects with the following keys:content
: The file contents, this will be encoded into a base64 string internallyencoded_content
(optional): File content already encoded into base64 string. Overridescontent
name
: The name of the filetype
: This is the mimetype of the file. Ex. png = image/png, pdf = application/pdf, txt = text/plain etc etc
-
:images
- An array of embedded images to add to the message:content
: The file contents, this will be encoded into a base64 string internallyencoded_content
(optional): File content already encoded into base64 string. Overridescontent
name
: The name of the filetype
: This is the mimetype of the file. Ex. png = image/png, pdf = application/pdf, txt = text/plain etc etc etc
-
:async
- Whether or not this message should be sent asynchronously -
:ip_pool
- The name of the dedicated ip pool that should be used to send the message -
:send_at
- When this message should be sent
-
Sending a message without template is similar to sending a one with a template. The biggest
change is that you have to inherit from MandrillMailer::MessageMailer
instead of the
MandrillMailer::TemplateMailer class:
class InvitationMailer < MandrillMailer::MessageMailer
default from: 'support@example.com'
def invite(invitation)
# in this example `invitation.invitees` is an Array
invitees = invitation.invitees.map { |invitee| { email: invitee.email, name: invitee.name } }
# no need to set up template and template_content attributes, set up the html and text directly
mandrill_mail subject: I18n.t('invitation_mailer.invite.subject'),
to: invitees,
# to: invitation.email,
# to: { email: invitation.email, name: 'Honored Guest' },
text: "Example text content",
html: "<p>Example HTML content</p>",
# when you need to see the content of individual emails sent to users
view_content_link: true,
vars: {
'OWNER_NAME' => invitation.owner_name,
'PROJECT_NAME' => invitation.project_name
},
important: true,
inline_css: true,
attachments: [
{
content: File.read(File.expand_path('assets/offer.pdf')),
name: 'offer.pdf',
type: 'application/pdf'
}
],
recipient_vars: invitation.invitees.map do |invitee| # invitation.invitees is an Array
{ invitee.email =>
{
'INVITEE_NAME' => invitee.name,
'INVITATION_URL' => new_invitation_url(invitee.email, secret: invitee.secret_code)
}
}
end
end
end
You can send the email by using the familiar syntax:
InvitationMailer.invite(invitation).deliver_now
InvitationMailer.invite(invitation).deliver_later(wait: 1.hour)
For deliver_later, Active Job will need to be configured
When switching over to Mandrill for transactional emails we found that it was hard to setup a mailer in the console to send test emails easily (those darn designers), but really, you don't want to have to setup test objects everytime you want to send a test email. You can set up a testing 'mock' once and then call the .test
method to send the test email.
You can test the above email by typing: InvitationMailer.test(:invite, email:<your email>)
into the Rails Console.
The test for this particular Mailer is setup like so:
test_setup_for :invite do |mailer, options|
invitation = MandrillMailer::Mock.new({
email: options[:email],
owner_name: 'foobar',
secret: rand(9000000..1000000).to_s
})
mailer.invite(invitation).deliver
end
Use MandrillMailer::Mock to mock out objects.
If in order to represent a url within a mock, make sure there is a url
or path
attribute,
for example, if I had a course mock and I was using the course_url
route helper within the mailer
I would create the mock like so:
course = MandrillMailer::Mock.new({
title: 'zombies',
type: 'Ruby',
url: 'http://funzone.com/zombies'
})
This would ensure that course_url(course)
works as expected.
The mailer and options passed to the .test
method are yielded to the block.
The :email
option is the only required option, make sure to add at least this to your test object.
You can turn on offline testing by requiring this file (say, in your spec_helper.rb):
require 'mandrill_mailer/offline'
And then if you wish you can look at the contents of MandrillMailer.deliveries
to see whether an email was queued up by your test:
email = MandrillMailer.deliveries.detect { |mail|
mail.template_name == 'my-template' &&
mail.message['to'].any? { |to| to[:email] == 'my@email.com' }
}
expect(email).to_not be_nil
Don't forget to clear out deliveries:
before :each { MandrillMailer.deliveries.clear }
The typical Delayed Job mailer syntax won't work with this as of now. Either create a custom job or queue the mailer as you would queue a method. Take a look at the following examples:
def send_hallpass_expired_mailer
HallpassMailer.hallpass_expired(user).deliver
end
handle_asynchronously :send_hallpass_expired_mailer
or using a custom job
def update_email_on_newsletter_subscription(user)
Delayed::Job.enqueue( UpdateEmailJob.new(user_id: user.id) )
end
The job looks like (Don't send full objects into jobs, send ids and requery inside the job. This prevents Delayed Job from having to serialize and deserialize whole ActiveRecord Objects and this way, your data is current when the job runs):
class UpdateEmailJob < Struct.new(:user_id)
def perform
user = User.find(user_id)
HallpassMailer.hallpass_expired(user).deliver
end
end
Create a custom worker:
class UpdateEmailJob
include Sidekiq::Worker
def perform(user_id)
user = User.find(user_id)
HallpassMailer.hallpass_expired(user).deliver
end
end
#called by
UpdateEmailJob.perform_async(<user_id>)
Or depending on how up to date things are, try adding the following to config/initializers/mandrill_mailer_sidekiq.rb
::MandrillMailer::TemplateMailer.extend(Sidekiq::Extensions::ActionMailer)
This should enable you to use this mailer the same way you use ActionMailer. More info: https://github.com/mperham/sidekiq/wiki/Delayed-Extensions#actionmailer
Create a job:
class SendUserMailJob
def initialize(user_id)
@user_id = user_id
end
def work
user = User.find(@user_id)
UserMailer.send_user_email(user).deliver
end
end
Send your job to Resque:
resque = Resque.new
resque << SendUserMailJob.new(<user id>)
You can set a mailer interceptor to override any params used when you deliver an e-mail. The interceptor is a Proc object that gets called with the mail object being sent to the api.
Example that adds multiple bcc recipients:
MandrillMailer.configure do |config|
config.interceptor = Proc.new {|params|
params["to"] = [
params["to"],
{ "email" => "bccEmailThatWillBeUsedInAll@emailsSent1.com", "name" => "name", "type" => "bcc" },
{ "email" => "bccEmailThatWillBeUsedInAll@emailsSent2.com", "name" => "name", "type" => "bcc" },
{ "email" => "bccEmailThatWillBeUsedInAll@emailsSent3.com", "name" => "name", "type" => "bcc" }
].flatten
}
end