After sending an e-mail using PHPMailer to my Gmail account, after clicking 'show details,' to the right of 'mailed-by,' it says 'yourhostingaccount.com.' Here is a picture:

I've read you may change it using the fifth parameter of PHP mail(), although I'm not using that. Is there a way to change this using PHPMailer? Thanks!

link|improve this question

40% accept rate
Try $mail->Hostname property instead of $mail->Host. Accordingly to the documentation this is the right field to use. – LazyOne Jun 11 '11 at 9:49
Sorry, that didn't work. It looks like it is a problem with FatCow, and I can't change what it says. – Kincaid Jun 11 '11 at 13:48
feedback

2 Answers

Have you tried:

$mail->Host = "domain.com";
link|improve this answer
Thank you for your reply, @ngen! Yes, I have tried that. – Kincaid Jun 11 '11 at 2:31
feedback

I found out that my domain and hosting provider, FatCow, uses NS1.YOURHOSTINGACCOUNT.COM and NS2.YOURHOSTINGACCOUNT.COM as their domain servers. This explains why it is happening, as I was connecting via SMTP to an e-mail address hosted by them. Unfortunately, I don't think I can change that and solve my problem... oh well.

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.