remove useless content when sending email to a staged used

This commit is contained in:
Régis Hanol
2016-04-11 19:06:10 +02:00
parent bb25200745
commit a359a973e2
3 changed files with 7 additions and 16 deletions

View File

@ -39,7 +39,7 @@ module Email
string = allow_reply_by_email? ? "user_notifications.reply_by_email" : "user_notifications.visit_link_to_respond"
string << "_pm" if @opts[:private_reply]
end
@template_args[:respond_instructions] = I18n.t(string, @template_args)
@template_args[:respond_instructions] = "---\n" + I18n.t(string, @template_args)
end
end
end