I’m pretty sure it’s a problem with the email, I use yahoo web mail and tested it using gmail too and it’s the same if you change the email to yours you would get the same email
The script they provided me works, it’s just universal email doesn’t this is the script they gave me
<?php
ini_set( 'display_errors', 1 );
error_reporting( E_ALL );
$from = "support@nexuscst.com";
$to = "psychic_lowe@yahoo.co.uk";
$subject = "Checking PHP mail";
// To send HTML mail, the Content-type header must be set
$headers = 'MIME-Version: 1.0' . "\r\n";
$headers .= 'Content-type: text/html; charset=iso-8859-1' . "\r\n";
// Create email headers
$headers .= 'From: '.$from."\r\n".
'Reply-To: '.$from."\r\n" .
'X-Mailer: PHP/' . phpversion();
// Compose a simple HTML email message
$message = '<html><body>';
$message .= '<h1 style="color:#f40;">PHP mail test!</h1>';
$message .= '<p style="color:#080;font-size:18px;">Just a HTML test</p>';
$message .= '</body></html>';
if(mail($to,$subject,$message, $headers)) {
echo "Message was sent.";
} else {
echo "Message was not sent.";
}
?>