通过邮政发送电子邮件时包括徽标
Including logo when sending email via postal
在我的 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>
您需要像这样使用完整的绝对图片网址-
<img src="@Request.Url.GetLeftPart(UriPartial.Authority)/Images/Logo.png" />
或
如果您有基于 html 的文件,那么您应该发送域名,就像您传递给视图的其他数据一样-
<img src="@ViewBag.DomainName/Images/Logo.png" />
当用户收到您的电子邮件时,您的电子邮件内容将不会像这样解析来自相对 URL 的图像路径 -
/Images/logo.png {this will not work}
因此只有在具有完整域路径的情况下才能获取图像。
您可以使用 Html 扩展名,如下所示。您可以参考here了解更多详情。
<div style="background-color:aqua;">
Hello, You wanted important web links right?
Check out this: @ViewBag.FunnyLink
<br />
@Html.EmbedImage("~/Images/Logo.png")
</div>
在我的 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>
您需要像这样使用完整的绝对图片网址-
<img src="@Request.Url.GetLeftPart(UriPartial.Authority)/Images/Logo.png" />
或
如果您有基于 html 的文件,那么您应该发送域名,就像您传递给视图的其他数据一样-
<img src="@ViewBag.DomainName/Images/Logo.png" />
当用户收到您的电子邮件时,您的电子邮件内容将不会像这样解析来自相对 URL 的图像路径 -
/Images/logo.png {this will not work}
因此只有在具有完整域路径的情况下才能获取图像。
您可以使用 Html 扩展名,如下所示。您可以参考here了解更多详情。
<div style="background-color:aqua;">
Hello, You wanted important web links right?
Check out this: @ViewBag.FunnyLink
<br />
@Html.EmbedImage("~/Images/Logo.png")
</div>