1 class UserNotifier < ActionMailer::Base
2 def signup_notification(user)
4 @subject += 'Please activate your new account'
6 @body[:url] = "http://mylyrix.ath.cx/activate/#{user.activation_code}"
12 @subject += 'Your account has been activated!'
13 @body[:url] = "http://mylyrix.ath.cx/"
18 @recipients = "#{user.email}"
19 @from = "donotreply@mylyrix.ath.cx"