Psyduck - 可達鴨 之 鴨力山大
Current File : /home/irplbiz/public_html/smartpowerci/testmail.php |
<?PHP
$email_a = 'info@smartpower.co.in';
$message = "The body of the message";
$message = wordwrap($message, 70, "\r\n");
$headers = 'From: ravikr84@yahoo.com' . "\r\n" .
'Reply-To: info@smartpower.co.in' . "\r\n" .
'X-Mailer: PHP/' . phpversion();
$mailResult = mail($email_a, 'Insert a subject here', $message, $headers);
if ($mailResult)
{
echo "Message accepted";
}
else
{
echo "Error: Message not accepted";
}
?>