8 lines
194 B
Ruby
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
|