I want to send logo in the top center of email body in c# winform, Please guide me as I am a new developer.
AlternateView htmlView = AlternateView.CreateAlternateViewFromString(messageHtml, null, "text/html");
LinkedResource logo = new LinkedResource("d:/logo.jpg");
logo.ContentId = "Companylogo";
htmlView.LinkedResources.Add(logo);