Hello,
I'm having a problem in sending plain text mails.
Once the user received the mail all the rows become just one.
This is a piece of the class I wrote:
Do you see someting wrong?
Is the mime type correct?
$Headers = "Content-type: text/plain; charset=iso-8859-1\n";
$Headers .= "X-Mailer: Mysite_" . $COUNTRY . " " . phpversion() . "\n";
$Headers .= "From: $this->from\r\n";
$Headers .= "Cc: $this->cc\r\n";
$Headers .= "Bcc: $this->bcc\r\n";
mail($this->to, $this->subject, $this->body, $Headers);
I'm getting crazy!