I\'m having some difficulty embedding an image from the Properties.Resources to a MailMessage, currently the image does not show in the email i receive.
I have succe
Bitmap b = new Bitmap(Properties.Resources.companyLogo); MemoryStream logo = new MemoryStream(); b.Save(logo, ImageFormat.Jpeg);
After you do the save, you have to "seek" the MemoryStream back to the start.
logo.Position = 0;