Difference between revisions of "BulkMail new"
Cg huyphong (talk | contribs) |
|||
Line 34: | Line 34: | ||
'''Value''' | '''Value''' | ||
|- align="left" valign="top" | |- align="left" valign="top" | ||
− | | width="356" | | + | | width="356" style="border: 1px solid #010101" | |
BULKMAIL_RESOURCE_ID | BULKMAIL_RESOURCE_ID | ||
− | | width="356" | | + | | width="356" style="border: 1px solid #010101" | |
number | number | ||
− | | width="356" | | + | | width="356" style="border: 1px solid #010101" | |
0 | 0 | ||
|- align="left" valign="top" | |- align="left" valign="top" | ||
Line 136: | Line 136: | ||
array newBM = BulkMail_new(bulkMailName, parentResourceId, mailTemplateResourceId); | array newBM = BulkMail_new(bulkMailName, parentResourceId, mailTemplateResourceId); | ||
− | print(newBM); | + | print(newBM); // {27,0,TestBulkMail,34778803,34409968,501537,Administrator@mycatinet.catglobe.com,{},{},{},0,0,0} |
+ | |||
'''Availability''' | '''Availability''' |
Revision as of 08:59, 20 December 2011
BulkMail_new
Create new bulk mail object
Syntax
BulkMail_new(bulkMailName, parentResourceId, mailTemplateId)
or
BulkMail_new( bulkMailName, parentResourceId, mailTemplateId , bulkMailTemplateResourceId)
Arguments
- bulkMailName: is string. It is the name of new bulkMail
- parentResourceId: is number. It is parent resource id of the new bulkMail
- mailTemplateId: is number. It is the mail template resource Id gotten from Communicator template
- bulkMailTemplateResourceId: is number. It is bulkMail template resource Id
Return value
Array which is BulkMail object:
Index |
Data type |
Value |
BULKMAIL_RESOURCE_ID |
number |
0 |
BULKMAIL_NAME |
number |
Entered value |
BULKMAIL_PARENT_RESOURCE_ID |
string |
Entered value |
BULKMAIL_TEMPLATE_RESOURCE_ID |
number |
if it is not specified explicitly in the constructor as a parameter, then get default bulk mail template |
BULKMAIL_MAIL_TEMPLATE_RESOURCE_ID |
number |
Entered value |
BULKMAIL_EMAIL_ACCOUNT |
string |
It will be the default private email inside the parent resource or the first global email in case there is no a default private email. If there is no any private and global email then it's "" |
BULKMAIL_USER_RESOURCE_IDS |
array |
{} |
BULKMAIL_GROUP_RESOURCE_IDS |
array |
{} |
BULKMAIL_GROUP_TO_BE_REBUILD_RESOURCE_IDS |
array |
{} |
BULKMAIL_PRIORITY |
number |
Normal There must be constants defined for 3 levels of priority: Bulkmail_Priority_Low Bulkmail_Priority_Normal Bulkmail_Priority_High |
BULKMAIL_NO_IN_OUT_QUEUE |
Number (read only) |
Default is 0 |
BULKMAIL_NO_OF_SENT |
Number (read only) |
Default is 0 Example string bulkMailName = "TestBulkMail"; number parentResourceId = 34778803; number mailTemplateResourceId = 501537; array newBM = BulkMail_new(bulkMailName, parentResourceId, mailTemplateResourceId); print(newBM); // {27,0,TestBulkMail,34778803,34409968,501537,Administrator@mycatinet.catglobe.com,{},{},{},0,0,0}
Version 5.8
|