Peter Veach said:
>
> It looks like there is a problem with the html code generated by the
> htmlarea plugin. I tried the latest download and the problem is still
> there. The outgoing email is only partially readable by squirrelmail
> and other mail clients. Mostly all you see are codes. Apparently the
> code is not being recognized as html. Is there a fix for this.
>
> Thanks again
>
> -Pete

 Hi Peter,

 I had this same problem and figured out it was my mistake. I discovered my error when I had the code showing up as raw html in the body of the text. Doing a View Header I discovered that the content-type was set to the following.

Content-Type: text/$email_type; charset=iso-8859-1

 Notice that content-type is showing up as the variable($email_type). Edit smtp.php and find the line that contain $email_type.

 You should have 2 that you need to change
$contentType = 'text/$email_type;';
and
$contentType = text/$email_type; charset='.$default_charset; 

 Change your the ' to a " and that should fix your problem.

 - Mike
  ------------------------------------------------------- This sf.net email is sponsored by:ThinkGeek Welcome to geek heaven. http://thinkgeek.com/sf -- squirrelmail-users mailing list List Address: [EMAIL PROTECTED] List Archives: http://sourceforge.net/mailarchive/forum.php?forum_id=2995 List Info: https://lists.sourceforge.net/lists/listinfo/squirrelmail-users

Reply via email to