So I'm writing this EXE to process refunds, and when the job's done, we're sending out an email to a list of users that will probably be like:
DO NOT REPLY
Refund processing has completed. N refunds were successfully processed. We encountered N errors. Please check http://whatever.url for a detailed report.
Thanks,
A computer
DO NOT REPLY
So, we're not talking about grinding out hundreds of emails here, just one a day with the relevant info slipstreamed in. It's unlikely that this email will ever be modified, and never by non-technical staff. How should I go about storing this and processing the template into the email? C# String.Format style with {0} and {1}, etc? XML/XSLT (seems like a hassle)? Do I store the template in App.config or put it in the database or something different altogether?
What did I ever do before StackOverflow? :)