Difference between revisions of "EmailAccount class"
Line 27: | Line 27: | ||
<source lang="javascript"> | <source lang="javascript"> | ||
+ | Example 1: | ||
number WebShop=2; | number WebShop=2; | ||
number Support=3; | number Support=3; | ||
Line 42: | Line 43: | ||
False | False | ||
832 | 832 | ||
+ | ---------- | ||
+ | Example 2: | ||
+ | number GlobalEmail=1; | ||
+ | number global_email_id=26; | ||
+ | EmailAccount a = new EmailAccount(GlobalEmail,global_email_id); | ||
+ | print(a.ActualEmail); | ||
+ | print(a.Address); | ||
+ | print(a.Alias); | ||
+ | print(a.Default); | ||
+ | print(a.ResourceId); | ||
+ | |||
+ | //Result: | ||
+ | panel@voxmeter.dk | ||
+ | panel@voxmeter.catglobe.com | ||
+ | Voxmeter | ||
+ | False | ||
+ | 16238 | ||
</source> | </source> |
Revision as of 09:19, 13 October 2016
EmailAccount
Represents an email account.
Constructors
- (int type "2: WebShop, 3: Support") - Instanciate an existing email account
- (int type "0: Resource, 1: GlobalEmail, 2: WebShop, 3: Support", int id "Resource id or global email id. Unused for webshop and support types") - Instanciate an existing email account
Methods
Properties
- string ActualEmail { get; set; } - Actual Email address
- string Address { get; set; } - Email address
- string Alias { get; set; } - Alias
- bool Default { get; } - Is this the default email account for the resource.
- bool IsGEA { get; } - Is the alias for a Global Email or not.
- string ObjectTypeName { get; } - The name of the type of object.
- int ResourceId { get; } - Id of account
- TypeInformation TypeInformation { get; } - Get information about this class.
- bool UseActualEmail { get; set; } - If true, the from email will be ActualMail. Otherwise, it will be Address.
Examples
Example 1:
number WebShop=2;
number Support=3;
EmailAccount a = new EmailAccount(Support);
print(a.ActualEmail);
print(a.Address);
print(a.Alias);
print(a.Default);
print(a.ResourceId);
//Result:
info@voxmeter.dk
Support@voxmeter.catglobe.com
Support
False
832
----------
Example 2:
number GlobalEmail=1;
number global_email_id=26;
EmailAccount a = new EmailAccount(GlobalEmail,global_email_id);
print(a.ActualEmail);
print(a.Address);
print(a.Alias);
print(a.Default);
print(a.ResourceId);
//Result:
panel@voxmeter.dk
panel@voxmeter.catglobe.com
Voxmeter
False
16238