amy, tuf,
from this thread I see I had a similar problem
After maaaany tentatives, I found this:
a) the problem starts when you use many 'headers', so it's a matter of order in the header-list
b) any 'from', 'cc', 'bcc' ... header must be put before the 'content-type' header, else they are not interpreted
c) the MIME header is not working (dont know why) so I dont use it (!!!!)
d) the X-Mailer header (in the form the phpbuilder.org PHP Manul suggests) makes the 'content-type' header not working, so I dont use it (!!!)
Then that's the final working result:
$headers="From: FromMeOnly <fromMeOnly@mail.com>\r\n".
"Content-type: text/html; charset=iso-8859-1\r\n";
Btw, I have some new problems in the mail, when delivered:
1) the date is 'none'
2) the following string
Message-Id: <.......> Date: Mon, 28 Jun 2004 01:30:16 -0700 (PDT) X-Spam-Processed: ......... X-MDRcpt-To: .......... X-Rcpt-To: ........ X-MDRemoteIP: ........... X-Return-Path: ........... X-MDaemon-Deliver-To: ............ X-MDAV-Processed: ............
is put on top of the mail body
So, any ideas about these two issues ?