11 lines
257 B
Ruby
11 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
|