I am using PHPMailer class to send emails via SMTP. Everything works great.

For example sake consider the website domain is 'sender.com', the user using the website has email address 'user@user.com' and the recipient's email address is 'recipient@ recipient.com'

In phpmailer script i added setFrom as 'user@user.com', sender as 'back@sender.com', hostname as 'sender.com', to-address as 'recipient@recipient.com'

I am not able to achieve the correct header such that the email client of recipient says - sent from 'user@user.com' via 'sender.com' - I have noticed on other websites and I am trying to replicate the header.

Any help would help.

link|improve this question
What header do you see in the said emails that generates the sent from 'user@user.com' via 'sender.com' message? For servers/domains with high spam filters in place, you may want to send the message from an account on your domain, and use the reply-to for user@user.com so you aren't flagged for attempting to send mail from a domain you aren't authorized to send from (SPF). – drew010 Feb 13 at 23:04
Yes I am using Reply-to and it works great. but one difference i noticed is that 'Message-ID' header is different. In the emails from another website that I am trying to replicate the Message-ID is like <xxxxx@user.com> - the message-id domain changes as per the user's domain. where as in the current system that we use.. the message-id is always <xxxx@sender.com> . also to not xxxxx is looks like randomly generated number and not the actually email address. – Shoogle Feb 13 at 23:39
I'm not aware of any systems that actually use the message-id for display purposes. You can generate it yourself by adding a Message-ID value to your custom headers so you could put anything in for the domain. Just make sure you are generating very random values for the first part so they aren't ever repeated. – drew010 Feb 13 at 23:46
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.