The easiest thing if you just want to send an automated message would probably be to make a PHP script for it, perhaps require some key so that people don't spam you merely by visiting the script's address, and then call URLDownloadToFile to execute said script.
Of course there are other better ways, but that would by far be the simplest to implement I believe.
PHP's
mail function:
// You can set things like sender (required), CC, BCC etc. through the headerEx argument
$headerEx = "From: sender@domain.top\n\rReply-to: reply@domain.com\n\rCC: copy_sent_to_me@domain.top";
mail("recipient@domain.top", "subject", "body", $headerEx);
"Why do programmers get Halloween and Christmas mixed up?" Because Oct(31) = Dec(25)