Adding SPF records in GoDaddy
- by Mayank swami
I have the GoDaddy hosting and send mail using the following code:
$to = "demomail@gmail.com";
$subject = "Test mail";
$message = "Hello! This is a simple email message.";
$from = "info@brightmeup.com";
$headers = "From:" . $from;
mail($to,$subject,$message,$headers);
echo "Mail Sent.";
When the mail arrives at its destination I see the…