-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #8 from cmdotcom/develop
Added support for custom HTML templates
- Loading branch information
Showing
2 changed files
with
15 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
namespace CM.Email.Sdk.Models | ||
{ | ||
public enum TemplateEditorType | ||
{ | ||
/// <summary>The Drag & Drop editor type is for use with the Drag & Drop editor in the EmailCampaigns webapp. (Don't use this type for custom HTML templates)</summary> | ||
DragAndDropEditor = 1, | ||
/// <summary>A normal HTML template (Use this when you want to save custom HTML templates</summary> | ||
HtmlEditor = 2 | ||
} | ||
} |