While using the mail() function with following extra header information;
$extra_header="From: " . $from . "\nCc: " . $cc . "\nContent-type: text/html;\nMIME-Version: 1.0";
mail($to, $subject, $message, $extra_header);
We receive "!!" characters after about 920 bytes of information in $message.
Does anybody know the solution to this problem?
PHP runs on a Linux server with Apache webserver.
Richard.