payre3p_app/app/mailers/admin_mailer.rb
Nicolas Bally 2accaa7c41 Suite
2018-08-07 13:41:40 +02:00

10 lines
401 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@payre3p.quartz.xyz,perrotmathilde@orange.fr", :subject => "Nouveaux commentaires à modérer sur le blog", :from => "info@payre3p.quartz.xyz"
end
end