Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

Description

Get an existing email notification template by name.

...

Code Block
languagec#
// get one template
const string name = "your template name";
var template = await emailNotificationManager.GetEmailNotificationTemplateByName(name);

// get all templates
var templates = await emailNotificationManager.GetEmailNotificationTemplateByName();