action-mailer
Installation
SKILL.md
Action Mailer
Comprehensive guide to sending emails in Rails applications.
Creating Mailers
rails generate mailer User welcome reset_password
# app/mailers/application_mailer.rb
class ApplicationMailer < ActionMailer::Base
default from: "noreply@example.com"
layout "mailer"
end