Updating to reflect changes in DM 0.9.1
[merb_mart.git] / app / mailers / user_mailer.rb
blob8b75d4c04f4b84f5ed215e803aa8644bd702f7ae
1 class UserMailer < Merb::MailController
3   def signup_notification
4     @user = params[:user]
5     render_mail
6   end
8   def activation_notification
9     @user = params[:user]
10     render_mail
11   end
13 end