Skip to content

Instantly share code, notes, and snippets.

@gacha
Created January 25, 2010 13:48
Show Gist options
  • Save gacha/285873 to your computer and use it in GitHub Desktop.
Save gacha/285873 to your computer and use it in GitHub Desktop.
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