Hai All
I need to add a image to CRM email activity text area. some logo image.
I can acheive this by publishing the image in web and refering it with its url.
email.description=http://www.microsoft.com/_images/logo.jpg;
But i dont need this method i need to display the image which is not published in web, i.e present in solution
Hope reading image as byte can do it..
FileStream
fs = File.OpenRead("logo.jpg");
byte[] data = new byte[fs.Length];
fs.Read(data, 0, data.Length);
email.description = ??????????????????
Can anyone help me in this...
Regards
Vinoth