EmailTemplate class
From Catglobe Wiki
More actions
EmailTemplate
Represents an email account.
Constructors
Methods
Properties
- DateTime CreatedDate { get; } - Get the time of creation.
- string MessageDefaultLanguage { get; set; } - Get/Set the default language mail body.
- DateTime ModifiedDate { get; } - Get the time of last modification.
- string ObjectTypeName { get; } - The name of the type of object.
- int ParentResourceId { get; set; } - Get the resource id.
- int PrimaryKey { get; } - Get the primary id for use in ancient functions.
- int ResourceId { get; } - Get the resource id.
- string ResourceName { get; set; } - Get the resource name.
- string SubjectDefaultLanguage { get; set; } - Get/Set the default language subject.
- TypeInformation TypeInformation { get; } - Get information about this class.
Examples
EmailTemplate email = new EmailTemplate(15537524);
number parentRsId = email.ParentResourceId;
EmailTemplate emailNew = new EmailTemplate("BinhTESTNEW", parentRsId);
emailNew.SubjectDefaultLanguage = "newSub";
emailNew.MessageDefaultLanguage = "Newbody";
emailNew.Save();
Result:
