Having an issue sending an image via email as an embedded image in the body. The image file shows as an attachment which is ok but the inline image portion just shows as a r
You need to add the LinkedResource into an AlternateView
AlternateView alternateView = AlternateView.CreateAlternateViewFromString("Client: " + data.client_id + " Has Sent You A Screenshot" + @"", null, "text/html"); alternateView.LinkedResources.Add(inline); mail.AlternateViews.Add(alternateView);