Giter Site home page Giter Site logo

Comments (9)

JerryDoubleU avatar JerryDoubleU commented on June 23, 2024 6

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 :)

from postal.

hellfirehd avatar hellfirehd commented on June 23, 2024

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

from postal.

hellfirehd avatar hellfirehd commented on June 23, 2024

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.

from postal.

NightOwl888 avatar NightOwl888 commented on June 23, 2024

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

from postal.

mattkoch614 avatar mattkoch614 commented on June 23, 2024

@JerryDoubleU Thank you! This worked for me :)

from postal.

vip32 avatar vip32 commented on June 23, 2024

@JerryDoubleU Wow, that is a nice workaround!

from postal.

tanis2000 avatar tanis2000 commented on June 23, 2024

@JerryDoubleU that worked fine. Awesome workaround! Thanks!

from postal.

jrz22 avatar jrz22 commented on June 23, 2024

@JerryDoubleU Thanks for posting!

from postal.

jeniferdeveloper avatar jeniferdeveloper commented on June 23, 2024

@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 :)

from postal.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.