2016-02-23 16:51:24 +01:00
|
|
|
class NewAdminMailer < ApplicationMailer
|
|
|
|
def new_admin_email admin, password
|
|
|
|
|
|
|
|
@admin = admin
|
|
|
|
@password = password
|
|
|
|
|
2016-08-01 18:10:32 +02:00
|
|
|
mail(from: "tps@apientreprise.fr", to: 'tech@apientreprise.fr',
|
2016-02-23 16:51:24 +01:00
|
|
|
subject: "Création d'un compte Admin TPS")
|
|
|
|
end
|
|
|
|
end
|