Dan G. Switzer, II wrote:
> I went ahead and blogged an fully working example using the technique Jon
> Wolski pointed out on Charlie Arehart's blog:
> 
> http://blog.pengoworks.com/blogger/index.cfm?action=blog:610
> 
> My example also shows using embedded images in an HTML message.

Unfortunately your example produces messages that will not result in the 
desired rendering on conforming MUAs. Your attachments should be on the 
outermost MIME part, not nested somewhere in the middle. I.e, you have:

multipart/alternative
   multipart/mixed
     HTML
     txt
     pdf
     img (attachment)
     img (inline)
   application/unsupported

It should be:
multipart/mixed
   multipart/alternative
     multipart/related
       HTML
       img (inline)
     txt
   pdf
   img (attachment)


In Thunderbird I see a message with 4 attachments for your example.

Jochem

~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~|
Enterprise web applications, build robust, secure 
scalable apps today - Try it now ColdFusion Today
ColdFusion 8 beta - Build next generation apps

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:292146
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4

Reply via email to