0

I want to send an e-mail consisting an image from my C# program. I can completely do that using the code samples at How to Send Mails from your GMAIL Account through VB.NET or C#. Windows Programming, with a Bit of Customization

But when I used another email service, they just remove the HTML tagged part including the image from the email! So does anyone know a method to embed the image without using HTML tags?

Thanks in advance.

silverfall
  • 81
  • 1
  • 4
  • Is the entire html being removed or are the images just being blocked from being displayed? Some people will prevent you from seeing external images, in this case it's possible to embed and display the embedded image. – Steve Smith Aug 16 '11 at 07:45

2 Answers2

0

perhaps you can send it as an attachment? Can that be an option for you?

Martin
  • 1,521
  • 3
  • 18
  • 35
0

There isn't really any way to do that other than the old:

  • send as attachment
  • just paste the full (or shortened) link into your content body
foxy
  • 7,599
  • 2
  • 30
  • 34