Include content stream png in HTML email as image?

  • Thread starter Thread starter Mark B
  • Start date Start date
M

Mark B

This is sending a blank image with an HTML email. Any ideas why? Is
MemoryStream the wrong type of object?

Dim ms As MemoryStream = New MemoryStream
bmp.Save(ms, ImageFormat.Png)

Dim MessageImage As New LinkedResource(ms, "image/png")
 
This works:

Dim ms As MemoryStream = New MemoryStream
bmp.Save(ms, ImageFormat.Png)
ms.Seek(0, SeekOrigin.Begin)
Dim MessageImage As New LinkedResource(ms)
 
Kelly,

HTML

:-)

Cor

"scorpion53061" <[email protected]> schreef in bericht




take a look athttp://kellychronicles.spaces.live.com/blog/cns!A0D71E1614E8DBF8!473....

What mark suggested will work for you as well.- Hide quoted text -

- Show quoted text -

What I described is an HTML email. Did you read the article? It simply
addresses getting images to appear embedded in an HTML email.
 
Of course I have read it,

but as I see a text from you with HTML in it, then I always have to think
"becomes Kelly unprofessional?

(I know it is something quiet different)

:-)

Cor


"scorpion53061" <[email protected]> schreef in bericht
Kelly,

HTML

:-)

Cor

"scorpion53061" <[email protected]> schreef in
bericht




take a look
athttp://kellychronicles.spaces.live.com/blog/cns!A0D71E1614E8DBF8!473....

What mark suggested will work for you as well.- Hide quoted text -

- Show quoted text -

What I described is an HTML email. Did you read the article? It simply
addresses getting images to appear embedded in an HTML email.
 
Of course I have read it,

but as I see a text from you with HTML in it, then I always have to think
"becomes Kelly unprofessional?

(I know it is something quiet different)

:-)

Cor

"scorpion53061" <[email protected]> schreef in bericht




What I described is an HTML email. Did you read the article? It simply
addresses getting images to appear embedded in an HTML email.- Hide quoted text -

- Show quoted text -

No just posting via Google. Its easier for me than using Outlook
Express to find stuff.
 
Back
Top