I have a ISSUEBOOK
database(mysql) which contains following field/columns
- loginID
- IssueDate
- DueDate
Now i need to implement a JAVA
code which should automatically
send mail to the users who exceeds their due date.
Information about users email address can be retrieved from STUDENTACCOUNT
database using their loginid.
So help me in providing the pseudocode/Algo to achieve this. I am using Struts 1.3.8 framework.
And if i want to run the above implemented code regularly at a fixed time than if am correct i have to implement quartz scheduler
.