postal icon indicating copy to clipboard operation
postal copied to clipboard

Sending image in non asp.net app.

Open calumb opened this issue 11 years ago • 9 comments

I have a class library where I need to send emails with images.

I get the following error when using @Html.EmbedImage. I'm using the MultiPart example but in a class library.

Unable to compile template. The name 'Html' does not exist in the current context.

Is this possible?

calumb avatar Dec 06 '12 17:12 calumb

I hate to simply say "Me too" but I have exactly the same problem.

hellfirehd avatar Apr 17 '13 18:04 hellfirehd

I've been looking into this. and isn't anything to do with postal. The fact is that RazorEngine (upon which postal relies) has no notion of the HtmlHelper which all the extension methods hang off of. When it renders a template, the template inherits from an base class provided by RazorEngine which does not have a Html member.

The workaround is to simply create an new class that inherits from Postal.Email and then implement your helpers on it or as extension methods to it.

hellfirehd avatar May 02 '13 21:05 hellfirehd

Actually, this sounds like the same problem I had when trying to create database driven views. I managed to work it out though - it is because when compiling the view outside of the context of the Views folder, the main Web.config is used (as opposed to the one in the Views folder) and the namespaces required for the @Html and other objects are not included in the main Web.config.

To fix the problem, you need to add the following config sections to your ROOT web.config:

<configSections>
    <sectionGroup name="system.web.webPages.razor" type="System.Web.WebPages.Razor.Configuration.RazorWebSectionGroup, System.Web.WebPages.Razor, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35">
      <section name="host" type="System.Web.WebPages.Razor.Configuration.HostSection, System.Web.WebPages.Razor, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" requirePermission="false" />
      <section name="pages" type="System.Web.WebPages.Razor.Configuration.RazorPagesSection, System.Web.WebPages.Razor, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" requirePermission="false" />
    </sectionGroup>
  </configSections>
  <system.web.webPages.razor>
    <host factoryType="System.Web.Mvc.MvcWebRazorHostFactory, System.Web.Mvc, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" />
    <pages pageBaseType="System.Web.Mvc.WebViewPage">
      <namespaces>
        <add namespace="System.Web.Mvc" />
        <add namespace="System.Web.Mvc.Ajax" />
        <add namespace="System.Web.Mvc.Html" />
        <add namespace="System.Web.Routing" />
      </namespaces>
    </pages>
  </system.web.webPages.razor>
  <appSettings>
    <add key="webpages:Enabled" value="true" />
  </appSettings>

See this link for more details if you need them: http://forums.asp.net/t/1705855.aspx/1

NightOwl888 avatar Jun 22 '13 16:06 NightOwl888

I have also spent some hours trying to get around this issue.

Mine solution was as follows (pseudo C# code): Attachment someImageAttachment = new Attachment(imagePath); emailModel.SomeImageContentId = someImageAttachment.ContentId; email.Attach(someImageAttachment);

in Email.cshtml: <img src="cid:@Model.SomeImageContentId" alt="SomeImage" />

Works perfectly in every e-mail client I have tested and the image is not visible as an attachment, which makes this solution even more awesome ;)

Hope it helps you and saves you lots of time :)

JerryDoubleU avatar Dec 07 '15 19:12 JerryDoubleU

@JerryDoubleU Thank you! This worked for me :)

mattkoch614 avatar Dec 31 '15 16:12 mattkoch614

@JerryDoubleU Wow, that is a nice workaround!

vip32 avatar Feb 23 '16 21:02 vip32

@JerryDoubleU that worked fine. Awesome workaround! Thanks!

tanis2000 avatar Jul 13 '16 09:07 tanis2000

@JerryDoubleU Thanks for posting!

jrz22 avatar Jul 21 '16 18:07 jrz22

@JerryDoubleU Thanks, is Work ...

have also spent some hours trying to get around this issue.

Mine solution was as follows (pseudo C# code): Attachment someImageAttachment = new Attachment(imagePath); emailModel.SomeImageContentId = someImageAttachment.ContentId; email.Attach(someImageAttachment);

in Email.cshtml: SomeImage

Works perfectly in every e-mail client I have tested and the image is not visible as an attachment, which makes this solution even more awesome ;)

Hope it helps you and saves you lots of time :)

jeniferdeveloper avatar Jan 11 '18 02:01 jeniferdeveloper