Created
February 28, 2009 02:44
-
-
Save hidenowt/71845 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
# /app/models/confirmation.rb | |
class Confirmation < ActionMailer::Base | |
def confirmation_for_email(user) | |
# irá utilizar o email digitado no cadastro do usuário, onde será enviar o mail de confirmação | |
recipients user.email | |
from "Administração Sistema XYZ <[email protected]>" | |
subject "Confirmação de Criação de Conta" | |
sent_on Time.now # hora de envio do email | |
body :user => user # objeto que será passado para o helper do template | |
template "thanks" # informa qual template será utilizado | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment