I was trying to tweak some html headers due to change in content type and facing a weird issue
When I execute the below code it doesn't gets email delivered at all
$htmlheader = "From: $emailad\r\nContent-Type: text/html\r\nContent-Transfer-Encoding: 8bit\r\n";
But when I add extra slash ( \ ) and double quotes (") to the end, it does prints the double quotes (") to start of the email its sending, Imgur snap
$htmlheader = "From: $emailad\r\nContent-Type: text/html\r\nContent-Transfer-Encoding: 8bit\r\n\" ";
I don't know whats going wrong. Any help?