Merhaba , içerisinde resim,icon, link vs bulunan bir html sayfayı (bildirimmail.html) mail olarak gönderiyorum sıkıntı yok fakat html sayfanın icindeki iconlar mail olarak gönderilmiyor bu konu hakkında yardımcı olabilirseniz cok sevinirim
MailMessage msg = new MailMessage();
StreamReader reader = new StreamReader(Server.MapPath("~/mail/bildirimmail.html"));
string readfile = reader.ReadToEnd();
string StrContent = "";
StrContent = readfile;
msg.IsBodyHtml = true;
msg.To.Add(Email);
msg.From = new MailAddress("info@test.com", "", System.Text.Encoding.UTF8);
msg.Subject = "Test";
msg.Body = StrContent.ToString() + ck_mail.Text;
SmtpClient smp = new SmtpClient();
smp.Credentials = new NetworkCredential("info@test.com", "Test");
smp.Port = 587;
smp.Host = "mail.test.com";
smp.EnableSsl = false;
smp.Send(msg);