Reminders need to be sent at maximum of 3 times and a minium of 1.
Does anybody have any suggestions.
Thanks
I do not know of any readily available scripts. But since the whole script will be nothing more than one db query and a loop over all returned rows where you send the mail I doubt that such a script would be really useful since you would have to write the SQL query youself as no programmer would know yor conditions for sending email beforehand.
In the script query the database for all customers that need to be notified. You did not give enough information for me to know what the conditions for sending a reminder are.
Then loop through all rows that were returned and send a mail using the mail [php.net] function. If sending the mail was successful increase some counter in the db.
All in all it is a rather simple script.
Andreas