Matt
Matt

Reputation: 5661

Use Razor views as email templates inside a Web Forms app

I have an asp.net Web Forms application that needs to send emails. I like the Razor syntax and as you can use Razor outside of MVC I thought I'd try and use that. I've seen that you can programmatically pass a template string to razor but I'd like to keep my razor templates as separate .cshtml files.

Does anyone have any simple, idiot-proof advice as to how to do this? I've tried to load them from file like this:

UserDetails userDetails = new UserDetails {Name = "Fred"};
string template = File.OpenText("Email/UserDetailsEmail.cshtml").ReadToEnd();            
string messageText = Razor.Parse(template, userDetails);

All to no avail. There's an exception finding the file. I'm using the razorengine dll.

I have everything else working, the smtp server etc, just not the views.

Any help appreciated.

Upvotes: 2

Views: 2014

Answers (2)

SLaks
SLaks

Reputation: 888205

You need to get the full path to the file; relative paths will end up being relative to the wrong location.

Write

File.OpenText(Server.MapPath("~/Email/UserDetailsEmail.cshtml"))

Upvotes: 4

Richard
Richard

Reputation: 22036

I would use the MVCMailer tool which you can setup with Nuget and has scaffolding for creating the views.

It is a very well written app and can be added to yours easily:

https://github.com/smsohan/MvcMailer

http://www.codeproject.com/KB/aspnet/MvcMailerNuGet.aspx

Upvotes: 1

Related Questions