aboutsummaryrefslogtreecommitdiffstats
path: root/railties/lib/rails/generators/rails/mailer/templates/mailer.rb
diff options
context:
space:
mode:
Diffstat (limited to 'railties/lib/rails/generators/rails/mailer/templates/mailer.rb')
-rw-r--r--railties/lib/rails/generators/rails/mailer/templates/mailer.rb16
1 files changed, 0 insertions, 16 deletions
diff --git a/railties/lib/rails/generators/rails/mailer/templates/mailer.rb b/railties/lib/rails/generators/rails/mailer/templates/mailer.rb
deleted file mode 100644
index 7343eb28b3..0000000000
--- a/railties/lib/rails/generators/rails/mailer/templates/mailer.rb
+++ /dev/null
@@ -1,16 +0,0 @@
-class <%= class_name %> < ActionMailer::Base
- default :from => "from@example.com"
-<% for action in actions -%>
-
- # Subject can be set in your I18n file at config/locales/en.yml
- # with the following lookup:
- #
- # en.actionmailer.<%= file_name %>.<%= action %>.subject
- #
- def <%= action %>
- @greeting = "Hi"
-
- mail :to => "to@example.org"
- end
-<% end -%>
-end