Linux || Test mail send || email || test email - mpaz-redstage/magento-snippets GitHub Wiki

<?PHP
$sender = '[email protected]';
$recipient = '[email protected]';
$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";
}