Action Mailer reference
What is Action Mailer?
Action Mailer is Rails’s framework for creating, previewing, and sending emails. It provides an elegant way to create emails using templates and is very similar to how you can use Action Controller to render HTML views using templates.
Action Mailer lets you use the same API to send emails regardless of what email delivery service you’re using (e.g., SendGrid, Mailgun, AWS SES, etc).
Generate mailer class
Example mailer class
Example mailer views
HTML
app/views/user_mailer/welcome_email.html.erb
:
Plain text
app/views/user_mailer/welcome_email.text.erb
:
Call the mailer
deliver_later
will enqueue the email as a job with Rail’s Active Job.
Preview emails
ActionMailer previews let you visit a special URL so that you can see how your emails render. Here’s how to preview emails.
Create a base ApplicationMailerPreview
This step is optional, but I find it useful to have a base class that all other preview classes can inherit from. It lets you share common functionality (e.g., including the FactoryBot
methods in your preview classes).
Create preview class
For the UserMailer
example, you’d create the following UserMailerPreview
class at spec/mailers/previews/user_mailer_preview.rb
(if using RSpec) or test/mailers/previews/user_mailer_preview.rb
(if using Minitest):
Note how the method name welcome_email
is the same as that inside our UserMailer
class.
Preview mailer
Visit http://localhost:3000/rails/mailers and you should see a link to welcome_email
. Clicking on this link will render a preview of your email.
Action Mailer configuration options
Sources
Thanks for your comment . Once it's approved, it will appear here.
Leave a comment