aboutsummaryrefslogtreecommitdiffstats
path: root/railties/lib/rails_generator
diff options
context:
space:
mode:
Diffstat (limited to 'railties/lib/rails_generator')
-rw-r--r--railties/lib/rails_generator/generators/components/mailer/templates/mailer.rb6
1 files changed, 5 insertions, 1 deletions
diff --git a/railties/lib/rails_generator/generators/components/mailer/templates/mailer.rb b/railties/lib/rails_generator/generators/components/mailer/templates/mailer.rb
index 3a1724a62e..0c7e6bebaf 100644
--- a/railties/lib/rails_generator/generators/components/mailer/templates/mailer.rb
+++ b/railties/lib/rails_generator/generators/components/mailer/templates/mailer.rb
@@ -1,4 +1,7 @@
class <%= class_name %> < ActionMailer::Base
+
+ # change to your domain name
+ default_url_options[:host] = 'example.com'
<% for action in actions -%>
def <%= action %>(sent_at = Time.now)
@@ -7,7 +10,8 @@ class <%= class_name %> < ActionMailer::Base
from ''
sent_on sent_at
- body :action => '<%= action %>'
+ body :greeting => 'Hi,'
end
<% end -%>
+
end