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.
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 thereply-toforuser@user.comso 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:04Message-IDvalue 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