如何实现这个“time to send out email“?# Programming - 葵花宝典
e*e
1 楼
我现在要给客户写一个小程序:
An application that would use tab delimited tab file that contains the
information to be emailed example: to, from, subject, text, attachement and
time to send out email.
我的问题是如何实现这个“time to send out email“,就是说send email的时间是不
定的,可能头十个当天上午10时送出,其他的11时送出。我的想法是spin a java
thread, and put the thread into sleep for five minitues and then wake up to
check if it's time to send the next email. 这样这个程序就要一直在客户的机子
上run着,直到最后一封邮件送出。
这是不是最好的方法?
An application that would use tab delimited tab file that contains the
information to be emailed example: to, from, subject, text, attachement and
time to send out email.
我的问题是如何实现这个“time to send out email“,就是说send email的时间是不
定的,可能头十个当天上午10时送出,其他的11时送出。我的想法是spin a java
thread, and put the thread into sleep for five minitues and then wake up to
check if it's time to send the next email. 这样这个程序就要一直在客户的机子
上run着,直到最后一封邮件送出。
这是不是最好的方法?