我正在使用以下部分代码向我们的客户发送电子邮件消息,例如新闻信件。它发送正确,但我在发送电子邮件时遇到了一个小问题。现在我用 HTML 代码发布一些图片。电子邮件中未显示图像。请帮我解决此问题..
这是我的部分代码:
msg.To = wemail;
//msg.Bcc = "bcc email";
msg.BodyFormat = MailFormat.Html;
msg.Body = "<html xmlns='http://www.w3.org/1999/xhtml'><head><title>Untitled Document</title></head><body><table width='506' style='border-style:solid; border-radius:5px;' ><tr><td width='496'> <img src='../images/logo1.jpg' alt='' width='508' /></td></tr><tr> <td height='1px'><hr /></td></tr><tr style='border:0px; background:#6CF;'> <td align='left' style='border-bottom:1px;'><p><b>Dear Team,</b></p> <p><b> This mail is to inform you ....</b></p> <p><u><b>Note : </b></u></p> <p><i> .... </i> </p> <form action='http://xxx.in' method='post' target='_blank'> <!-- <form id='form1' name='form1' method='post' action=''>--> <b> Please Click Here : </b> <input type='submit' name='btn_submit' id='btn_submit' onclick='window.location.href='http://xxx.in'' value='Visit our 'Portal' ' /> </form><br /><br /></td></tr><tr style='border-top:#000'> <td> <img src='../images/Untitled-2.gif' alt='' /></td></tr></table></body></html>";