View Single Post
  #47  
Old January 4th 15, 02:49 PM posted to alt.windows7.general
Mayayana
external usenet poster
 
Posts: 6,438
Default e-mail graphics mystery

| Do you see headers in there, like the Content-ID headers to match up
| with all the cid (content identifier) references?
|

It looks OK to me. I may have overlooked some
syntax error, but I see the headers, the content
and the base-64 encoded images. Any quirks can't
be too serious, since I can see the images in two
different email programs.

I should note that I "cheated". The HTML portion
was such a mess I ran it through the following VBS
code to render it reasonably readable:

s1 = Replace(s, "=0A", vbCrLf, 1, -1, 1)
s1 = Replace(s1, "=09", Chr(9), 1, -1, 1)
s1 = Replace(s1, "=3D", Chr(1), 1, -1, 1)
s1 = Replace(s1, "=", "", 1, -1, 1)
s1 = Replace(s1, Chr(1), "=", 1, -1, 1)


| I see the HTML code that would be contained within the HTML MIME section
| in the raw source of the e-mail (but not even the MIME headers in the
| body that delineate the HTML MIME section). I don't see the MIME
| section for the plain text part (if the sender included both text and
| HTML versions of the message to ensure non-HTML clients could still read
| the message). I don't see any of the headers, especially the Content-ID
| and other content headers. I don't see the MIME parts containing the
| encoded strings that define the images (if they were inline or attached
| instead of hyperlinks pointing to external content).


Ads