peractus_app/app/mailers/admin_mailer.rb
Nicolas Bally 1810d38bd6 url
2018-08-07 11:49:17 +02:00

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