How to test emails in Rails
25 April 2022 (Updated 15 May 2022)
Configure ActionMailer for tests
By default, the line config.action_mailer.delivery_method = :test
in config/environments/test.rb
configures ActionMailer not to deliver emails but to accumulate them in the ActionMailer::Base.deliveries
array. Make sure you don’t change this behaviour.
To make your mailer tests read better, consider adding the following helper in a spec support file:
Test that the email content is correct
You want to write a unit test that checks:
- Email sender is correct
- Email recipient is correct
- Email subject is correct
- Email body is correct
Something like this (spec/mailers/reminder_mailer_spec.rb
):
Test that email is sent at the right time
You want to test that the email is enqueued or sent when expected. Usually, you’ll enqueue or send emails in controllers or jobs.
Something like this (spec/jobs/send_reminders_job_spec.rb
):
Sources
Tagged:
Rails testing
Thanks for your comment . Once it's approved, it will appear here.
Leave a comment