Index: app/views/mailer/wiki_content_added.text.erb
===================================================================
--- app/views/mailer/wiki_content_added.text.erb	(revision 10463)
+++ 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 10463)
+++ app/views/mailer/wiki_content_updated.html.erb	(working copy)
@@ -4,3 +4,6 @@
 
 <p><%= l(:label_view_diff) %>:<br />
 <%= link_to h(@wiki_diff_url), @wiki_diff_url %></p>
+
+<%= 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 10463)
+++ 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) %>
Index: app/views/mailer/wiki_content_added.html.erb
===================================================================
--- app/views/mailer/wiki_content_added.html.erb	(revision 10463)
+++ app/views/mailer/wiki_content_added.html.erb	(working copy)
@@ -1,3 +1,6 @@
 <p><%= l(:mail_body_wiki_content_added, :id => link_to(h(@wiki_content.page.pretty_title), @wiki_content_url),
                                         :author => h(@wiki_content.author)).html_safe %><br />
 <em><%=h @wiki_content.comments %></em></p>
+
+<%= call_hook(:view_mailer_wiki_content_added_bottom,
+              :wiki_content => @wiki_content) %>
