I am using a form embedded in a web page to send a mime email, using code as below:
$to = $myrow["email"];
$mime = new MIME_mail("news@myYSA.com", $to, $title.date('d M Y', time()),$message."\n\nRegards,\n".$name."\n\n".$footer);
if ($addactivityinfo=='on')
{
$mime->attach($activities, "", HTML, BASE64);
}
$mime->send_mail();
However when someone recieves the mail the text has been messed up ie the word Hello may become Hel
lo
on two lines.
I dont understand whats goin on!!!!
HELP!
🙂