aboutsummaryrefslogtreecommitdiffstats
path: root/railties/lib/rails/generators/erb/mailer/templates/layout.html.erb
diff options
context:
space:
mode:
authorAndy Jeffries <andy@andyjeffries.co.uk>2014-11-17 10:44:04 +0000
committerAndy Jeffries <andy@andyjeffries.co.uk>2014-11-21 16:46:49 +0000
commit38cfaa828502b2f5d137a6a2952c68ae5efc15b1 (patch)
tree84a86084e875142b1b6309f646bc1a8ad508f3b0 /railties/lib/rails/generators/erb/mailer/templates/layout.html.erb
parent3a804aab9557efd1f1f3b68a5d1e9e3c2f37df20 (diff)
downloadrails-38cfaa828502b2f5d137a6a2952c68ae5efc15b1.tar.gz
rails-38cfaa828502b2f5d137a6a2952c68ae5efc15b1.tar.bz2
rails-38cfaa828502b2f5d137a6a2952c68ae5efc15b1.zip
Creates an ApplicationMailer and layout by default, including html and body tags to reduce spam score
Diffstat (limited to 'railties/lib/rails/generators/erb/mailer/templates/layout.html.erb')
-rw-r--r--railties/lib/rails/generators/erb/mailer/templates/layout.html.erb5
1 files changed, 5 insertions, 0 deletions
diff --git a/railties/lib/rails/generators/erb/mailer/templates/layout.html.erb b/railties/lib/rails/generators/erb/mailer/templates/layout.html.erb
new file mode 100644
index 0000000000..93110e74ad
--- /dev/null
+++ b/railties/lib/rails/generators/erb/mailer/templates/layout.html.erb
@@ -0,0 +1,5 @@
+<html>
+ <body>
+ <%%= yield %>
+ </body>
+</html>