Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I need to send email notifications to users and I need to allow the admin to provide a template for the message body (and possibly headers, too).

I'd like something like string.Format that allows me to give named replacement strings, so the template can look like this:

Dear {User},

Your job finished at {FinishTime} and your file is available for download at {FileURL}.

Regards,

-- 
{Signature}

What's the simplest way for me to do that?

share|improve this question
There are some excellent suggestions in the answers to this question: stackoverflow.com/questions/620265 – Josh Hinman Apr 9 '09 at 9:45

9 Answers

up vote 13 down vote accepted

Use a templating engine. StringTemplate is one of those, and there are many.

share|improve this answer
+1. That's what I use for most scenarios. – RichardOD Aug 31 '09 at 16:08

You could use string.Replace(...), eventually in a for-each through all the keywords. If there are only a few keywords you can have them on a line like this:

string myString = template.Replace("FirstName", "John").Replace("LastName", "Smith").Replace("FinishTime", DateTime.Now.ToShortDateString());

Or you could use Regex.Replace(...), if you need something a bit more powerful and with more options.

Read this article on codeproject to view which string replacement option is fastest for you.

share|improve this answer
It's not good way, if you have a lot of parameters to replace and/or have long string - because string is immutable, so there is big memory usage. – TcKs Apr 9 '09 at 9:41
+1 @TcKs - agreed, the example has 4 parameters so I'd go with @Ovi's suggestion, but if it got to around 10 or so then I'd look to a templating language.. – Andrew Apr 9 '09 at 9:56
This could use lots of memory, but a templating engine or language could very well be overkill also. – SnOrfus Apr 9 '09 at 18:10
The Garbage Collector will address some relatives of yours if you know what I mean... – Andrei Rinea Apr 10 '09 at 0:10
All of the above is true, but irrelevant for many applications (where the templates are small and milliseconds don't matter). If the solution does not need to be generic and it's OK to disallow any of the template's literal text to ever look like a symbol (for instance by disallowing '{' and '}' in literal text), this may actually be enough. On the other hand it is very easy to improve the performance side with the same functionality as a simple replace. – The Dag Jan 24 '12 at 9:49

Actually, you can use XSLT. You create a simple XML template:

<?xml version="1.0" encoding="utf-8"?>
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:msxsl="urn:schemas-microsoft-com:xslt" exclude-result-prefixes="msxsl">
  <xsl:template match="TETT">
    <p>
       Dear <xsl:variable name="USERNAME" select="XML_PATH" />,

       Your job finished at <xsl:variable name="FINISH_TIME" select="XML_PATH" /> and your file is available for download at <xsl:variable name="FILE_URL" select="XML_PATH" />.

       Regards,
        -- 
       <xsl:variable name="SIGNATURE" select="XML_PATH" />
    </p>
</xsl:template>

Then create a XmlDocument to perform transformation against: XmlDocument xmlDoc = new XmlDocument();

        XmlNode xmlNode = xmlDoc .CreateNode(XmlNodeType.Element, "EMAIL", null);
        XmlElement xmlElement= xmlDoc.CreateElement("USERNAME");
        xmlElement.InnerXml = username;
        xmlNode .AppendChild(xmlElement); ///repeat the same thing for all the required fields

        xmlDoc.AppendChild(xmlNode);

After that, apply the transformation:

        XPathNavigator xPathNavigator = xmlDocument.DocumentElement.CreateNavigator();
        StringBuilder sb = new StringBuilder();
        StringWriter sw = new StringWriter(sb);
        XmlTextWriter xmlWriter = new XmlTextWriter(sw);
        your_xslt_transformation.Transform(xPathNavigator, null, xmlWriter);
        return sb.ToString();
share|improve this answer
4  
Much as I love XSLT, this probably fails the last statement in the OP: "What's the simplest way for me to do that?" :) – lotsoffreetime Apr 9 '09 at 14:33
1  
well... you still can use string.format... – ifesdjeen Apr 9 '09 at 16:32
1  
i was replying "What’s a good way of doing string templating in .NET?") not the "easiest") – ifesdjeen Apr 9 '09 at 16:33
6  
"You create a simple XML template"??! What?! There is no such thing!!! – Agnel Kurian Sep 4 '09 at 5:06

SmartFormat is a pretty simple library that meets all your requirements. It is focused on composing "natural language" text, and is great for generating data from lists, or applying conditional logic.

The syntax is extremely similar to String.Format, and is very simple and easy to learn and use. Here's an example of the syntax from the documentation:

Smart.Format("{Name}'s friends: {Friends:{Name}|, |, and}", user)
// Result: "Scott's friends: Michael, Jim, Pam, and Dwight"

The library has great error-handling options (ignore errors, output errors, throw errors). Obviously, this would work perfect for your example.

The library is open source and easily extensible, so you can also enhance it with additional features too.

share|improve this answer

You can use "string.Format" method:

var user = GetUser();
var finishTime = GetFinishTime();
var fileUrl = GetFileUrl();
var signature = GetSignature();
string msg = 
@"Dear {0},

Your job finished at {1} and your file is available for download at {2}.

Regards,

-- 
{3}";
msg = string.Format( msg, user, finishTime, fileUrl, signature );

It allows you to change content in future and si friendly for localization.

share|improve this answer
That only allows numbered inputs, and throws an exception if the user puts in too high a number. – Simon Apr 9 '09 at 12:59
Yes only numbered inputs, ok. But "throws an exception if the user puts in too high a number" is not true. I tried it with "1024 * 1024" input parameters and it works. – TcKs Apr 9 '09 at 13:09
No, I mean if you replaced {3} with {4} but don't provide another input parameter. – Simon Apr 9 '09 at 13:26
Yes, but ANY solution ought to produce an exception if the template contains symbols that aren't being replaced. It's far better to shed some light on the fact that something is wrong than to bury your head in the sand! – The Dag Jan 24 '12 at 9:52

Implementing your own custom formatter might be a good idea.

Here's how you do it. First, create a type that defines the stuff you want to inject into your message. Note: I'm only going to illustrate this with the User part of your template...

class JobDetails
{
    public string User 
    { 
        get;
        set; 
    }        
}

Next, implement a simple custom formatter...

class ExampleFormatter : IFormatProvider, ICustomFormatter
{
    public object GetFormat(Type formatType)
    {
        return this;
    }

    public string Format(string format, object arg, IFormatProvider formatProvider)
    {
        // make this more robust
        JobDetails job = (JobDetails)arg;

        switch (format)
        {
            case "User":
            {
                return job.User;
            }
            default:
            {
                // this should be replaced with logic to cover the other formats you need
                return String.Empty;
            }
        }
    }
}

Finally, use it like this...

string template = "Dear {0:User}. Your job finished...";

JobDetails job = new JobDetails()
                     {
                             User = "Martin Peck"
                     };

string message = string.Format(new ExampleFormatter(), template, job);

... which will generate the text "Dear Martin Peck. Your job finished...".

share|improve this answer

There's some nice background on this, with an implementation, on Phil Haack's blog: http://haacked.com/archive/2009/01/14/named-formats-redux.aspx

share|improve this answer

If you are coding in VB.NET you can use xml literals. If you are coding in C# you can use ShartDevelop to have files in VB.NET in the same project as C# code.

share|improve this answer

If you need something very powerfull (but really not the simplest way) you can host Asp.Net and use it as your templating engine.

You'll have all the power of Asp.Net to format the body of your message.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.