repo.or.cz
/
merb_mart.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
history
|
raw
|
HEAD
Converted view ERB syntax to Haml
[merb_mart.git]
/
app
/
mailers
/
user_mailer.rb
blob
8cdbfa4144a7d1778d478bd48db80559bfc07cbb
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