All, I have the following code:

$to = $friend_email[$x];
$subject = "Subject";
$message = "This is a message";
$from = $your_email;
$headers = "From:" . $from;
mail($to,$subject,$message,$headers);

When the email sends (I'm using Godaddy's hosting service) it says From correctly but then in gmail it says via pxnlhgxxx.prod.xhx3.secureserver.net. Is there anyway to hide the via part or make it say something like website.com? Thanks for the help.

link|improve this question

feedback

4 Answers

up vote 0 down vote accepted

As per the mail() docs, you use the optional 5th parameter for the function and pass in the name of the server you'd like to masquerade as:

mail($to, $subject, $message, $headers, "-f sender@website.com");
link|improve this answer
Google will still show the "via" message in this situation. You have to DKIM sign. – ceejayoz Jan 3 at 2:14
Which matters not at all, because OP is using GoDaddy... – Marc B Jan 3 at 2:16
Your proposed solution won't stop Gmail from showing the 'via' text. DKIM signing will. That GoDaddy shared hosting won't let you do this is a different issue. – ceejayoz Jan 3 at 2:18
feedback

If your hosting off godaddy then something like that will happen. You can use your own SMTP server, or use Google free SMTP Server (logging in with your gmail account). Host Gator does the same thing.

link|improve this answer
feedback

Its all up to the configuration of the smtp server.

link|improve this answer
feedback

You can prevent Google from showing the 'via' notice by DKIM signing your outgoing mail to prove that you genuinely control the domain you're sending e-mail on behalf of.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.