vote up 0 vote down star

How can I compare the current date of the web server with a date I have stored in the mySQL database and 3 days before that that in the database to send a notification email ?

flag
I want to send the email every month , 3 days before the day stored in the mySQL database – Prema Sep 8 at 12:12
Do you store only the date part in your database, like the integer 28 and want to send emails on 25th of each month? – Quassnoi Sep 8 at 12:19
I store the date like a date type of mySQL YYYY-MM-DD. – Prema Sep 8 at 12:25
I also store names and emails. – Prema Sep 8 at 12:35

2 Answers

vote up 1 vote down check

This will select rows whose mydate is at least 3 days earlier than the current date:

SELECT  *
FROM    mytable
WHERE   mydate <= SYSDATE() - INTERVAL 3 DAY
link|flag
And to automatically send the e-mail can I use a cron-job that executes the script every day ? – Prema Sep 8 at 12:18
@Prema: sure you can. – Quassnoi Sep 8 at 13:11
vote up 0 vote down

You just need to write a program which queries the db and get all email ids which has (now()-3) = field in db you are comparing against and send mail to those email ids and add it as a scheduled task/crontab which will get executed daily(schedule time when web server is less utilized).

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.