| Current Path : /home/jonh/ |
| Current File : //home/jonh/mail.php |
<?PHP
$sender = 'mediacontrol@mediacontrol.no';
$recipient = 'jon-harald@07.no';
$subject = "php mail test";
$message = "php test message";
$headers = 'From:' . $sender;
if (mail($recipient, $subject, $message, $headers))
{
echo "Message accepted";
}
else
{
echo "Error: Message not accepted";
}
?>