idn_app/app/mailers/general.rb
Nicolas Bally b5690bc6f2 initial
2016-07-25 15:55:11 +02:00

16 lines
363 B
Ruby

class General < ActionMailer::Base
default :from => "One Voice <info@test.com>"
self.default_url_options = {:host => HOSTNAME}
def confirm_email(registrant)
@registrant = registrant
mail(:to => @registrant.email, :subject => "Confirmation de votre adresse email.") do |format|
format.html { render :action => "confirm_email"}
end
end
end