I have C# application that must store some information into MS SQL that would be later sent to email with DB Mail.
Within C# application I have a class with several properties and I need to use it to generate email text. So what I would like is set up a template with placeholders for variables. I need to create text as HTML and plain text.
What tools, libraries would you recommend for HTML?
Is String.Format() best alternative to work with plain text?