Converted view ERB syntax to Haml
[merb_mart.git] / app / mailers / user_mailer.rb
blob8cdbfa4144a7d1778d478bd48db80559bfc07cbb
1 class UserMailer < Merb::MailController
2   
3   def signup_notification
4     @user = params[:user]
5     render_mail
6   end
7   
8   def activation_notification
9     @user = params[:user]
10     render_mail
11   end
12   
13 end