up vote 0 down vote favorite
share [g+] share [fb]

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 ?

link|improve this question
I want to send the email every month , 3 days before the day stored in the mySQL database – Prema Sep 8 '09 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 '09 at 12:19
I store the date like a date type of mySQL YYYY-MM-DD. – Prema Sep 8 '09 at 12:25
I also store names and emails. – Prema Sep 8 '09 at 12:35
feedback

2 Answers

up vote 1 down vote accepted

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|improve this answer
And to automatically send the e-mail can I use a cron-job that executes the script every day ? – Prema Sep 8 '09 at 12:18
@Prema: sure you can. – Quassnoi Sep 8 '09 at 13:11
feedback

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|improve this answer
feedback

Your Answer

 
or
required, but never shown