Author: DeepaMonteiro | Posted on: 11/15/2010 3:32:12 AM | Views : 896

Hi Everyone,
Im trying to send a newsletter which is in html format with multiple images in it. I would like to send it as an email, preferabby with no attachments.
I tried using LinkedResource and using the alternateview property in ASP.net, But either the email gets sent out with attachments or there is jus one image displayed.
After lot of searching I accidently bumped into LinkedResourseCollection which would enable multiple images as a collection of the linkedresource.
But now im unable to link this collection to the Alternateview(html).
Also the part of  - htmlView.LinkedResources.Add(coll); is not permissable.

Any help is greatly appreciated.


The following is a percept of my code:
string str = "<html><body><h1>Picture1</h1><br/><img src='cid:uniqueId1'> <br/><h1>Picture2</h1><img alt= ...

Go to the complete details ...