RG.RazorMail 1.0.3

There is a newer version of this package available.
See the version list below for details.
dotnet add package RG.RazorMail --version 1.0.3
NuGet\Install-Package RG.RazorMail -Version 1.0.3
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="RG.RazorMail" Version="1.0.3" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add RG.RazorMail --version 1.0.3
#r "nuget: RG.RazorMail, 1.0.3"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install RG.RazorMail as a Cake Addin
#addin nuget:?package=RG.RazorMail&version=1.0.3

// Install RG.RazorMail as a Cake Tool
#tool nuget:?package=RG.RazorMail&version=1.0.3

RG.RazorMail

NuGet .NET

Render razor view to html and inline css. This library simply wraps RazorLight and PreMailer.Net

Setup

1. Add to service collection
services.AddRazorMail(options => {
    options.ViewAssembly = Assembly.GetEntryAssembly();
});
2. Set PreserveCompilationContext to true in your .csproj file
<PropertyGroup>
  <PreserveCompilationContext>true</PreserveCompilationContext>
</PropertyGroup>
3. Set build action of your razor views to EmbeddedResource
4. Use relative path of your razor views as viewName
string html = await _razorMail.RenderAsync("Views/Home/Index.cshtml", model);

Available methods

// Render razor view to string
Task<string> RenderAsync<T>(string viewName, T model);

// Render razor view to string and inline css
Task<string> RenderAndInlineCssAsync<T>(string viewName, T model, string? css = null);

// Inline css only
string InlineCss(string html, string? css = null);
Product Compatible and additional computed target framework versions.
.NET net8.0 is compatible.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
1.0.7 812 2/15/2024
1.0.6 83 2/15/2024
1.0.5 98 2/15/2024
1.0.4 88 2/14/2024
1.0.3 87 2/13/2024
1.0.2 384 11/13/2023
1.0.1 747 11/30/2022
1.0.0 571 3/2/2022