bootcamp/app/mailers/application_mailer.rb
Simon Quigley 1e5f2d08e6 Add the initial template, from rails new .
This will become heavily customized over time.
2023-09-13 04:18:09 -05:00

5 lines
102 B
Ruby

class ApplicationMailer < ActionMailer::Base
default from: "from@example.com"
layout "mailer"
end