PHPArtist
PHPArtist

Reputation: 61

How to writephp script to send reminder email to user before 5 days of deadline?

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

Answers (1)

matino
matino

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

Related Questions