Skip to content

Instantly share code, notes, and snippets.

@eladmeidar
Created March 7, 2010 23:28
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save eladmeidar/324719 to your computer and use it in GitHub Desktop.
Save eladmeidar/324719 to your computer and use it in GitHub Desktop.
class UserMailer < ActionMailer::Base
def activation_mail(user)
setup_email(user)
@subject += "Welcome #{user.username}, Please activate your new account"
@body[:url] = "http://YOURSITE/activate/#{user.activation_code}"
end
def activated(user)
setup_email(user)
@subject += "Welcome #{user.username}, Your account has been activated!"
@body[:url] = "http://YOURSITE/"
end
protected
def setup_email(user)
@recipients = "#{user.email}"
@from = "ADMINEMAIL"
@subject = "[YOURSITE] "
@sent_on = Time.now
@body[:user] = user
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment