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 s开发者_StackOverflow社区imple, 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.
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"))
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
精彩评论