Created
January 25, 2010 13:48
-
-
Save gacha/285873 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class Emailer < ActionMailer::Base | |
layout "emailer" | |
def simple_user_registration user | |
recipients user.email | |
from Lolita.config.email(:default_from) | |
subject I18n.t("emailer.simple_user_registration.subject") | |
sent_on Time.now | |
@user = user | |
content_type "multipart/alternative" | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment