submitted by: Guest
PHP: send email
Send an email from PHP - one line example.
code snippet:
<?php
mail("root@localhost.com", "This is the SUBJECT", "This is the BODY");
?>
<?php
mail("root@localhost.com", "This is the SUBJECT", "This is the BODY");
?>
