views:

46

answers:

2

Hi

I have windows Application from where I am sending the mail using Email template images. But on different SMTP server it show different result . It attached the template images as an attachment.

I am using following method as mention in the link to send email template :

http://ramanisandeep.wordpress.com/tag/send-email/

Please help me to send a formatted mail to all server with Identical format.

Thank You

Wanting for your Valuable and Precious thoughts.

A: 

Is it possible that the different results are just because you are using different email clients to look at the sent email? If so there are a number of 3rd parties that sell softwar and/or services to help manage that problem. Check this out for an exmaple (just one of the many I found by Googling):

Chris Clark
+1  A: 

You need to create your email so that images point to an embedded image and not attached.

Read more here about how to do this. The key is to use AlternateViews (MSDN article).

Eventually, you will need to cycle through each image in the email and embed the image while changing the src to point to a Content ID.

Alison