Scheduling a time in the future to send an email in Java or Python

后端 未结 6 1868
执笔经年
执笔经年 2021-01-27 05:11

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

6条回答
  •  难免孤独
    2021-01-27 05:45

    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.

提交回复
热议问题