Description
Get an existing email notification template by name.
...
Code Block | ||
---|---|---|
| ||
// get one template
const string name = "your template name";
var template = await emailNotificationManager.GetEmailNotificationTemplateByName(name);
// get all templates
var templates = await emailNotificationManager.GetEmailNotificationTemplateByName(); |