instiki/vendor/rails/railties/lib/rails_generator/generators/components/mailer/templates/mailer.rb
2007-01-22 07:43:50 -06:00

14 lines
298 B
Ruby

class <%= class_name %> < ActionMailer::Base
<% for action in actions -%>
def <%= action %>(sent_at = Time.now)
@subject = '<%= class_name %>#<%= action %>'
@body = {}
@recipients = ''
@from = ''
@sent_on = sent_at
@headers = {}
end
<% end -%>
end