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
Installs
1
GitHub Stars
2
First Seen
Apr 16, 2026
action-mailer — bastos/ruby-plugin-marketplace