demarches-normaliennes/app/mailers/new_admin_mailer.rb
2017-06-30 17:21:41 +02:00

8 lines
194 B
Ruby

class NewAdminMailer < ApplicationMailer
def new_admin_email admin
@admin = admin
mail(to: 'tech@tps.apientreprise.fr',
subject: "Création d'un compte Admin TPS")
end
end