在我的 MVC4 应用程序中,我使用邮包来发送电子邮件。
我正在尝试通过<img>
标签包含徽标,但它不起作用。
如何包含我的公司徽标?
控制器动作:
public ActionResult Index()
{
dynamic email = new Email("Example");
email.To = "xxxxx@xxxxxx";
email.FunnyLink = "haiii";
email.Send();
return View();
}
查看:
To: @ViewBag.To From: lolcats@website.com
Subject: Important Message
<div style="background-color:aqua;">
Hello, You wanted important web links right?
Check out this: @ViewBag.FunnyLink
<br />
<img src="~/Images/Logo.png" />
</div>