私の 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>