Reputation: 61
I have written a mail function in codeigniter (PHP) to send mail to users. Now I want to send a reminder mail 5 days before their expire date. If anybody have any idea please post here...
Upvotes: 0
Views: 2424
Reputation: 17725
Create a cron job (or scheduled task if you use Windows) to run your script and run it every day / hour (or any other timeframe that suits your needs).
There are plenty of tutorials on google how to setup cron job, check this out for example
Upvotes: 2