ActionMailer:
*ActionMailer
[{“Name”:“3.0”,“GroupName”:null},{“Name”:“3.1”,“GroupName”:null},{“Name”:“3.2”,“GroupName”:null},{“Name”:“4.0”,“GroupName”:null},{“Name”:“4.1”,“GroupName”:null},{“Name”:“4.2”,“GroupName”:null},{“Name”:“5.0”,“GroupName”:null}]
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.
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.