I\'m writing an application and I\'d like it to somehow schedule an email to be sent at a later date (likely an hour after it is run). The programming language will be Python or
Quartz is a great Java library for functions that you want to run at a certain time, after a certain time interval, etc.
There is also the Timer class in the JDK.