i cant send to you with a attachment how can i give you my zip file
if i put evrything in a mail as text that wil be confusing
/* by defaule the inline images in the selected message
will be added as attachments to the new message
the reason is in htmlbody the image src will be as follows:
src = "cid:image001.jpg@01C82869373A65B0"
to view inline images (and avoid image attachments) it should changed as follows:
src = "image001.jpg"
replace "cid" with "" (empty string) and
replace "image001.jpg@01C82869373A65B0" with "image001.jpg" (only file name)
i change it a bit because you have so many malformd mails
- uppercase / lowercase
- start with <IMG but not end with IMG>
- one thing i'am always sure of it begins end ends with "
- i trasfer the names off the attachments because in some mails there are no real attachments from the file
- i hope and like i tested the inline img read always last and the real attachments first
real exampel off a bad formd mail
<IMG
id=_x0000_i1026 height=615
alt="Une nouvelle maison pour une famille (12 photos)"
src="cid:D83C7571CEC54453A961C7043575CAA3@whatever"
width=500><SPAN
style="FONT-SIZE: 10pt"><BR></SPAN><IMG
*/
thanks