demarches-normaliennes/app/mailers/new_admin_mailer.rb
2016-02-23 16:51:24 +01:00

10 lines
257 B
Ruby

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