idn_app/app/mailers/general.rb
2016-07-29 20:23:40 +02:00

16 lines
363 B
Ruby
Executable File

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