Send Mail in PHP
In this example, we will show how to send an email message to someone in PHP.
PHP Code:
<?php
echo "<html><body>";
mail ("
[email protected]", "Subject", "Hello!");
echo "Sending mail...";
echo "</body></html>";
?>
It is that simple!
The PHP mail function has up to four...