I am trying to embed an image in an html email with no success so far.
I am sending the email but the image is not there
Do you have any suggestions
MailMessage mailMessage = new MailMessage();
mailMessage.From = new MailAddress("mail@gmail.com");
mailMessage.To.Add(txtEmailContactUs.Text);
mailMessage.Subject = txtSubjectContactUs.Text;
mailMessage.Body = "<b>Sender Name : </b> " + txtNameContactUs.Text +
"<br/><b>Sender Email:</b>" + txtEmailContactUs.Text + "</br>"
+ "<b>Comments : </b>" + txtCommentsContactUs.Text + "</br>"
+ "<img alt=\"Embedded Image\" height=\"400\" width=\"400\" src=\&qu ...
Go to the complete details ...