bievre_app/app/mailers/admin_mailer.rb
Caroline Girard dee35396f0 initial
2018-09-07 11:04:43 +02:00

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