I want to let my server send me e-mails
with birthday reminders based on a birthday calendar in a database on the server at my web hosting provider's. I know how to send e-mails
from PHP
, but only as an action after a button click on the client side. That's also the only way to perform an action I could find.
How can I have my server send me an e-mail
on a specific date/time
without user interaction?
edit
I don't think my question is a duplicate. The presumed duplicate link refers to a question about cron, and the answer is about the syntax, but it doesn't explain how cron works, or how I can use it for my problem.