MVCMailer にメール画像を埋め込もうとしています。Github MvcMailer ステップ バイ ステップ ガイドは、以下に示すような解決策を提供します。
ステップバイステップガイド:
//Place this in the View:
@Html.InlineImage("logo", "Company Logo")
//Place this in the mailer:
var resources = new Dictionary<string, string>();
resources["logo"] = logoPath;
PopulateBody(mailMessage, "WelcomeMessage", resources);
私の問題は、ビューが を認識しないこと@Html.InlineImage
です。「InlineImage」だけでなく、他のhtmlヘルパーも認識します。実際、入力してもインテリセンスにはなりません@Html
。
これは MVC 4 ではサポートされていないと思います。誰かが私を正しい方向に向けて、これを機能させるために何をする必要があるか教えてもらえますか?