PHP – Send an alert email
This trick helps you to send an alert mail when there is a new registration on your site or when there is some critical error in your PHP script.
mail(“recipient@example.com”,
“email subject”,
“Body of the message”,
“From: webmaster@mydomain.comrn”);
?>