thoughtbot/french_toast

View on GitHub
app/mailers/french_toast/notifier_mailer.rb

Summary

Maintainability
A
0 mins
Test Coverage
module FrenchToast
  class NotifierMailer < ActionMailer::Base
    def article_processed(email)
      mail(
        from: "us@example.com",
        to: email,
      )
    end
  end
end