View Single Post
  #2 (permalink)  
Old 04-13-2003, 09:40 AM
SWFKit SWFKit is offline
Senior Member
 
Join Date: Dec 2002
Posts: 2,015
Default Re: email problem with "=" replaced by "=3D"

Hi,

The email message is QP(quoted-printable) encoded. Most of Email clients can decode it. The Mail object can also parse an email file:

Code:
var mail = new Mail;
mail.load("1.eml");
trace(mail.text);
Reply With Quote