I don't know why you are getting a </TD> in your plain text (there are no reports of this happening) but you can't properly rebuild the email this way if the email has embedded images. An html mail with embedded images has CID references to the images which are then encoded into the email. The original mail may have something like:
<img src="cid:0fcf01c20e55$c822ad40$[EMAIL PROTECTED]"> And, somewhere in the mail will be an attached image that has the same reference (you can see this if you send a rich content email from Outlook Express). So, you need to have the same image attachment with the same CID which would require some sophisticated parsing. HTH, Howie ----- Original Message ----- From: "Greg Silver" <[EMAIL PROTECTED]> To: "inFusion Support List" <[EMAIL PROTECTED]> Sent: Friday, June 07, 2002 2:55 PM Subject: [iMS] ods problem > Howie, I am decoding an email with odsmime ( latest version ) > > when i rebuild the email and send it out i am loseing images and it also is > putting </TD> in plain text. > > > here is my decode code > > <cfx_odsmime > ACTION = "decode" > FILE = "#form.emailfile#" > DECODEDIR = "d:\ims\decode\" > FILELIST = "ALL" > DECODEHTMLATTACHMENTS = "YES" > OVERWRITE = "YES" > NAME = "ODSMIME_QUERY" > TEXTSIZELIMIT = "0" > HTMLSIZELIMIT = "0" > > > > > and my rebuild code: > > > <cfx_imsmail > smtpto="**SNIPPED** > parsetokens="yes" > TOKENSTART="<:" > TOKENEND=":>" > header_to="<:smtpto:>" > smtpfrom="[EMAIL PROTECTED]" > header_from="FishingWorks.com <[EMAIL PROTECTED]>" > FAILTO="[EMAIL PROTECTED]" > return_path="[EMAIL PROTECTED]" > header_subject="#ODSMIME_SUBJECT#" > BODY="#ODSMIME_TEXT# **SNIPPED FOOTER**" > HTML="#ODSMIME_HTML# **SNIPPED FOOTER**" > > > > > have you heard of any issues like this? > ==^======================================================= This list server is Powered by iMS "The Swiss Army Knife of Mail Servers" -------------------------------------- To leave this list please complete the form at http://www.coolfusion.com/iMSSupport.cfm Need an iMS Developer license? Sign up for a free license here: http://www.coolfusion.com/iMSDevelopers.cfm List archives: http://www.mail-archive.com/infusion-email%40eoscape.com/ Note: You are subscribed as [email protected] ==^=======================================================
