I am using a MySQL database and PHP.
My MySQL database contains the following records:
Name Address Data email Date
Joy Fortblair 10 [email protected] 1/22/2009
Bob Atlanta 15 [email protected] 2/22/2009
My intention is to send the email using PHP with the following conditions:
The data is 1 day old. (
Current date - date = 1 day
)It should mail all the email records at one time.
What is the best way to get started?