private string GetBody(string template, INotificationTemplateData templateData)
        {
            var body = new StringBuilder(template);

            templateData.GetKeys().ForEach(key => body = body.Replace(key, templateData.GetValue(key)));
            return(body.ToString());
        }