blob: 4c0fae6d91d7ef23063a3b5de26d9a57145db2e8 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
|
class ParamsMailer < ActionMailer::Base
before_action { @inviter, @invitee = params[:inviter], params[:invitee] }
default to: Proc.new { @invitee }, from: -> { @inviter }
def invitation
mail(subject: "Welcome to the project!") do |format|
format.text { render plain: "So says #{@inviter}" }
end
end
end
|