0

I'm trying to insert a signature image into emails sent from my application. I know how to insert an image using LinkedResource and AlternateView, but those use a file from the file system. I'm trying to use a Resource File (e.g. Properties.Resources.myLogo). How does one achieve this?

Marcus
  • 5,296
  • 3
  • 30
  • 53

1 Answers1

1

You need to load the image from a resource stream. This stackoverflow post should explain how to do it.

Community
  • 1
  • 1
mfanto
  • 13,708
  • 6
  • 49
  • 59