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