I know it is possible to send email through php using mail(), however I wanted to know if it is possible for my server to send out a bi-weekly email automatically.
Simply, I want to get an email from my server with a bit of info every two weeks automatically. Can this actually be done through php even if there are no visitors to the site for the two week period? If not, how would this be done?
I am currently using a hosted windows server using cPanel.
Use a cron job to call a PHP script.
Here’s an intro to setting up a cron job in CPanel – http://www.siteground.com/tutorials/cpanel/cron_jobs.htm, and your server would then execute your script bi-weekly.