Reputation: 77
I have a user portal with 100's of members. i need to check the date of birth of every employee and need to send a birthday message automatically through email on the birth date. how can i do this. is it possible to write crone in codeigniter? if it so please suggest me some helpful links to write cron for beginners. I am using Codeigniter and my sql database.
Thanks In advance.
Upvotes: 2
Views: 1246
Reputation: 11987
Firstly write a normal function in controller to send email. Make sure it satisfies following criteria
Then in cpanel of your server, you can set cron based on your requirement, either every minute, every hour, etc.
For your scenerio, you should set once in a day and thay will be available in common settings. Select that and enter the path to your controller function in which you have written code for sending the email.
Hope it helps.
Upvotes: 2