Redmine/app/views/mailer/reminder.text.html.rhtml
Jean-Philippe Lang 0c81052770 Adds a rake task to send reminders. An email is sent to each user with a list of the issues due in the next days, if any.
See @rake -D redmine:send_reminders@ for options.

git-svn-id: http://redmine.rubyforge.org/svn/trunk@1459 e93f8b46-1217-0410-a6f0-8f06a7374b81
2008-05-25 17:31:50 +00:00

10 lines
263 B
Plaintext

<p><%= l(:mail_body_reminder, @issues.size, @days) %></p>
<ul>
<% @issues.each do |issue| -%>
<li><%=h "#{issue.project} - #{issue.tracker} ##{issue.id}: #{issue.subject}" %></li>
<% end -%>
</ul>
<p><%= link_to l(:label_issue_view_all), @issues_url %></p>