Ruby on Rails ActionMailer

Help us to keep this website almost Ad Free! It takes only 10 seconds of your time:
> Step 1: Go view our video on YouTube: EF Core Bulk Extensions
> Step 2: And Like the video. BONUS: You can also share it!

Introduction

Action Mailer allows you to send emails from your application using mailer classes and views. Mailers work very similarly to controllers. They inherit from ActionMailer::Base and live in app/mailers, and they have associated views that appear in app/views.

Remarks

It is advisable to process the sending of email asynchronously so as not to tie up your web server. This can be done through various services such as delayed_job.



Got any Ruby on Rails Question?