RedmineReminderEmails » History » Version 4
Mischa The Evil, 2010-12-16 05:15
Rollback to version 2 to undue defacement of wiki-page
1 | 1 | Jean-Philippe Lang | h1. Sending reminder emails |
---|---|---|---|
2 | |||
3 | Redmine offers a rake task that send reminder emails about issues due in the next days. |
||
4 | |||
5 | Available options: |
||
6 | 4 | Mischa The Evil | |
7 | * days: number of days to remind about (defaults to 7) |
||
8 | * tracker: id of tracker (defaults to all trackers) |
||
9 | * project: id or identifier of project (defaults to all projects) |
||
10 | * users: comma separated list of user ids who should be reminded |
||
11 | |||
12 | The following example will send an email to each user who have assigned issues that are due in the next 7 days: |
||
13 | |||
14 | rake redmine:send_reminders days=7 RAILS_ENV="production" |
||
15 | |||
16 | The following example will send an email to users *1, 23, and 56* who have assigned issues that are due in the next 7 days: |
||
17 | |||
18 | rake redmine:send_reminders days=7 users="1,23, 56" RAILS_ENV="production" |