Posted on: 1/21/2015 1:21:41 AM | Views : 559

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 ...