aboutsummaryrefslogtreecommitdiffstats
path: root/railties/generators/templates/mailer.erb
diff options
context:
space:
mode:
Diffstat (limited to 'railties/generators/templates/mailer.erb')
-rw-r--r--railties/generators/templates/mailer.erb15
1 files changed, 0 insertions, 15 deletions
diff --git a/railties/generators/templates/mailer.erb b/railties/generators/templates/mailer.erb
deleted file mode 100644
index 5afc254923..0000000000
--- a/railties/generators/templates/mailer.erb
+++ /dev/null
@@ -1,15 +0,0 @@
-require 'action_mailer'
-
-class <%= class_name %> < ActionMailer::Base
-
-<% for action in actions -%>
- def <%= action %>(sent_on = Time.now)
- @recipients = ''
- @from = ''
- @subject = ''
- @body = {}
- @sent_on = sent_on
- end
-
-<% end -%>
-end