I have the same problem, html emails are empty in outlook 2003. just the static text is there.
i tried changing
if(isset($_SERVER['SERVER_SOFTWARE']) && stristr($_SERVER['SERVER_SOFTWARE'],'microsoft')){
$lineEnd = "\r\n";
}else{
$lineEnd = "\n";
}
to
if(isset($_SERVER['SERVER_SOFTWARE']) && stristr($_SERVER['SERVER_SOFTWARE'],'microsoft')){
$lineEnd = "\n";
}else{
$lineEnd = "\n";
}
but still receive only the email without any form fields filled out.
urgent help needed please.