Remove useless from parameter in mailers

We already defined a default one in
ApplicationMailer
This commit is contained in:
gregoirenovel 2017-05-11 18:24:43 +02:00
parent 503f174f4b
commit e14d1a6c15
5 changed files with 5 additions and 8 deletions

View file

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