Commit 430fc228 authored by Eric Davis's avatar Eric Davis

[#219] Add plugin hooks to the mailer layout

parent 0db26f83
...@@ -26,7 +26,9 @@ hr { ...@@ -26,7 +26,9 @@ hr {
</head> </head>
<body> <body>
<span class="header"><%= Redmine::WikiFormatting.to_html(Setting.text_formatting, Setting.emails_header) %></span> <span class="header"><%= Redmine::WikiFormatting.to_html(Setting.text_formatting, Setting.emails_header) %></span>
<%= call_hook(:view_layouts_mailer_html_before_content, self.assigns) %>
<%= yield %> <%= yield %>
<%= call_hook(:view_layouts_mailer_html_after_content, self.assigns) %>
<hr /> <hr />
<span class="footer"><%= Redmine::WikiFormatting.to_html(Setting.text_formatting, Setting.emails_footer) %></span> <span class="footer"><%= Redmine::WikiFormatting.to_html(Setting.text_formatting, Setting.emails_footer) %></span>
</body> </body>
......
<%= Setting.emails_header %> <%= Setting.emails_header %>
<%= call_hook(:view_layouts_mailer_plain_before_content, self.assigns) %>
<%= yield %> <%= yield %>
<%= call_hook(:view_layouts_mailer_plain_after_content, self.assigns) %>
-- --
<%= Setting.emails_footer %> <%= Setting.emails_footer %>
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment