Hi,
One year ago i did a system of postcards, it was working fine until the server administrator decides to change server, beacause the page was generating much traffic.
The old server had smtp, and i could sent email with html with no problem.
The new server has qmail, and i can send stuff by email via php, except html. I couldn't able to find the correct header for html that f****n server send... the mails aren't sent, i recive no error messages.
Can someone PLEASE help with some configuration clue, or header for html?
piece of code:
$headers = "MIME-Version: 1.0\r\n";
$headers .= "Content-type: text/html; charset=iso-8859-1\r\n";
/ additional headers /
$headers .= "From: ".$this->dados['autor_nome']." <".$this->dados['autor_email'].">\r\n";
// i tried with \r\n and only \n
// the email is only sent without that html headers.