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,407
  • 3
  • 31
  • 54

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
  • 14,168
  • 6
  • 51
  • 61