Almost every application I ever worked on had some requirement to send emails. Whenever I need to implement sending emails (using Action Mailer), I also implement a background job for it. Since version 4.2, Rails has built-in support for executing background jobs using Active Job. Every time I need to start setting up Active Job for email sending, I find myself looking up the required syntax and s

