Index: app/views/mailer/wiki_content_added.html.erb =================================================================== --- app/views/mailer/wiki_content_added.html.erb (revision 14648) +++ app/views/mailer/wiki_content_added.html.erb (working copy) @@ -1,3 +1,6 @@

<%= l(:mail_body_wiki_content_added, :id => link_to(@wiki_content.page.pretty_title, @wiki_content_url), :author => h(@wiki_content.author)).html_safe %>
<%= @wiki_content.comments %>

+ +<%= call_hook(:view_mailer_wiki_content_added_bottom, + :wiki_content => @wiki_content) %> Index: app/views/mailer/wiki_content_added.text.erb =================================================================== --- app/views/mailer/wiki_content_added.text.erb (revision 14648) +++ app/views/mailer/wiki_content_added.text.erb (working copy) @@ -3,3 +3,6 @@ <%= @wiki_content.comments %> <%= @wiki_content_url %> + +<%= call_hook(:view_mailer_wiki_content_added_bottom, + :wiki_content => @wiki_content) %> Index: app/views/mailer/wiki_content_updated.html.erb =================================================================== --- app/views/mailer/wiki_content_updated.html.erb (revision 14648) +++ app/views/mailer/wiki_content_updated.html.erb (working copy) @@ -4,3 +4,6 @@

<%= l(:label_view_diff) %>:
<%= link_to @wiki_diff_url, @wiki_diff_url %>

+ +<%= call_hook(:view_mailer_wiki_content_updated_bottom, + :wiki_content => @wiki_content) %> Index: app/views/mailer/wiki_content_updated.text.erb =================================================================== --- app/views/mailer/wiki_content_updated.text.erb (revision 14648) +++ app/views/mailer/wiki_content_updated.text.erb (working copy) @@ -6,3 +6,6 @@ <%= @wiki_content_url %> <%= l(:label_view_diff) %>: <%= @wiki_diff_url %> + +<%= call_hook(:view_mailer_wiki_content_updated_bottom, + :wiki_content => @wiki_content) %>