I am building an application which will send out custom emails to end users.
I have constructed an HTML template from which the emails will be built.
I currently have the template filled with tags as placeholders for the custom content...
|Text-Placeholder|
I have been returning the html file as a string to my CreateEMail Method:
string html = System.IO.File.ReadAllText(Server.MapPath("~/EmailTemplates/emailTemplate.html"));
And then using String.Replace to substitute in the custom text/content
html = html.Replace("|Name-Placeholder|", username);
I am curious if there is a method which would allow me to construct the template as a RazorView strongly typed as a ViewModel which will model the custom text/content, and return the view as an HTML file or directly as a string to pass into the body property of my SMTPClient instance for sending to the user?
Has anyone accomplished something like this or similar?