musifrat_app/app/mailers/admin_mailer.rb
Nicolas Bally a1aef72f7f intial
2019-02-03 15:12:58 +01:00

10 lines
419 B
Ruby

class AdminMailer < ActionMailer::Base
def password_reset(admin)
@admin = admin
mail :to => admin.email, :subject => "Reinitialisation du mot de passe.", :from => "info@nicolasbally.com"
end
def notify_comments
mail :to => "info@irrisud.payresas.quartz.xyz,perrotmathilde@orange.fr", :subject => "Nouveaux commentaires à modérer sur le blog", :from => "info@irrisud.payresas.quartz.xyz"
end
end