Hacker News new | ask | show | jobs
by jrockway 6457 days ago
This is easy enough to do on a UNIX machine. Compose your message, then delay the sending with at:

    $ at 8:00am sh -c 'mail person@normal-sleep-schedule.com < my_message.txt'
1 comments

Unless you want to delay it until birthdays or some other event that's weeks or months away.
at lets you specify dates as day/month/year. All you have to do is make sure the computer is running at that time, which is easy if you do this on your mail server.
That I know. I would never depend on a command line command to execute something months from now. Not on any system.