email-reminder: Never forget a birthday or an anniversary again!
July 13th, 2008 edited by TinchoArticle submitted by François Marier. Guess what? We still need you to submit good articles about software you like!
Email-Reminder is a simple tool to define events for which you want to receive a reminder by email. These reminders (sent out daily by a small cronjob) can be either on the day of the event and/or a few days beforehand.
Events can be:
- birthdays
- anniversaries
- weekly, monthly and yearly events
Sample Reminders
Here is an example of what you get in your inbox for an upcoming birthday:
From: Email-Reminder Date: Tue, 12 May 2007 04:00:22 -0400 (EDT) To: Francois Marier <fmarier@gmail.com> Subject: Trent Reznor’s birthday Hi Francois, I just want to remind you that Trent Reznor is turning 42 in 5 days. You can reach Trent Reznor at trent@example.com. Have a good day! – Sent by Email-Reminder
And here is one on the day of an anniversary:
From: Email-Reminder Date: Tue, 29 Jul 1996 04:00:11 -0400 (EDT) To: Francois Marier <fmarier@gmail.com> Subject: 15th anniversary of Prince Charles and Lady Diana Hi Francois, I just want to remind you that the 15th anniversary (Crystal) of Prince Charles and Lady Diana is today. Have a good day! – Sent by Email-Reminder
Event Definition
Events for each user are defined in an XML file (~/email-reminders) in that user’s home directory, click here to see a sample file. You don’t actually have to define each event by hand in the XML file though. Email-Reminder comes with a simple GTK user interface:
Availability
Email-Reminder has been in Debian since Sarge and in Ubuntu since Dapper. It is licensed under the GPL.
More Information
You can find out more about Email-Reminder by visiting its homepage and subscribing to its news feed.
If you want to get involved, see the roadmap and feel free to contribute some patches!
July 13th, 2008 at 11:36 am
Does anybody what would be the advantage of this in comparison to setting up “remind”(http://www.roaringpenguin.com/products/remind) to send email reminders?
July 13th, 2008 at 4:33 pm
I’m sure e-mail-reminder gives you more control and granularity over the events you create. Plus, if it doesn’t, you can modify the source code and make it happen. That’s the primary difference.
July 13th, 2008 at 11:09 pm
Not knocking it, just trying to understand how I could use it, so
have a look at http://packages.debian.org/search?keywords=remind
July 14th, 2008 at 1:33 am
Doesn’t look like something I want.
I use Thunderbird with the add-on ReminderFox.
July 15th, 2008 at 12:06 pm
For the more unixian / console-based people among you, there’s the calendar command from the bsdmainutils package that looks more flexible to me.
Just set up a cron job to get your reminders emailed to you every day/week.
July 15th, 2008 at 8:55 pm
I’m using pal http://packages.debian.org/search?keywords=pal to record events (regular ones or punctual ones), and I’m using that piece of script every day to send me an email in case there’s something to remember:
#!/bin/sh
export LANG=C
if ! pal -c 0 -d today | grep “No events.” > /dev/null; then
# replace arno with your user name.
pal -c 0 -d today –mail | /usr/lib/sendmail arno
fi