postal icon indicating copy to clipboard operation
postal copied to clipboard

Email sending for asp.net mvc using the view engine system to render emails.

Results 93 postal issues
Sort by recently updated
recently updated
newest added

It seems like we need to specify the charset (i.e. UTF-8) when creating the alternative view: https://github.com/andrewdavey/postal/blob/9b0e426aa79af93ce67b8b1a6f08d561f0f07248/src/Postal/EmailParser.cs#L51 I'm not sure about hard coding it as UTF-8, perhaps the charset could...

I currently have this cod to send the email ``` var sendEmail = new EmailRegisterViewModel { EmailProp = new EmailProperties { To = model.Email, Msg = "derp", ViewName = "ConfirmRegistration",...

As [detailed on this issue](https://github.com/andrewdavey/postal/issues/109). This adds a "style" attribute to the `@Html.EmbedImage()` extension method. This is important because in HTML emails you need to place styles inline.

would be nice if there was a hook that enabled us to post-process the generated view output - then could use premailer.net to automatically inline all the css https://github.com/milkshakesoftware/PreMailer.Net currently...

We have a common base class for all viewmodels. So a viewmodel cannot inherit from that base class and from `Postal.Email`. Seems others have this problem as well: [see here](https://github.com/andrewdavey/postal/issues/52),...

More flexibility by sending a separate model. Useful when preparing a model and then send it to an external service like Hangfire. The preparation of the model is done by...

We've been doing some testing using a service called Litmus. It seems to indicate that the HTML emails that we're building with Postal are displaying HTML tags in the preview...

Can't we use FileSystemRazorViewEngine from inside the controller? My requirement is to keep the mail template(Views) in a common path and use by mvc application as well as other console...

In our project we needed these two features: - "style" attribute of embedded images in email - embedding dynamically generated images without file extensions - that's why we implemented content...

Hi, Is it possible to use external css file with postal in Winforms application?