Warning: mail() [function.mail]: SMTP server response: 550 5.7.1 Relaying to <[email protected]> denied (authentication required) in D:\inetpub\vhosts\advanceseeds.com\subdomains\download\httpdocs\phpSendEmail.php on line 11
Email Can Not Send.
Code (PHP)
<html>
<head>
<title>ThaiCreate.Com PHP Sending Email</title>
</head>
<body>
<?
$strTo = "[email protected]";
$strSubject = "Test Send Email";
$strHeader = "From: [email protected]";
$strMessage = "My Body & My Description";
$flgSend = mail($strTo,$strSubject,$strMessage,$strHeader); // @ = No Show Error //
if($flgSend)
{
echo "Email Sending.";
}
else
{
echo "Email Can Not Send.";
}
?>
</body>
</html>