BulkMail getHistory: Difference between revisions
From Catglobe Wiki
More actions
Created page with "==== BulkMail_getHistory ==== Send a bulk mail specified by its id. '''Syntax''' sendBulkMail(''bulkMailRId'') '''Arguments''' ''bulkMailRId:'' Is a numeric (non-decimal)..." Â |
No edit summary  |
||
| (4 intermediate revisions by the same user not shown) | |||
| Line 1: | Line 1: | ||
[[Category:Email_and_SMS_Functions]]Â | |||
==== BulkMail_getHistory ==== | ==== BulkMail_getHistory ==== | ||
Get history of bulk mail sent | |||
'''Syntax''' | '''Syntax''' | ||
<span style="color: rgb(44, 45, 48);Â font-family: Slack-Lato, appleLogo, sans-serif;Â font-size: 15px;Â font-style: normal;Â font-variant: normal;Â font-weight: normal;Â letter-spacing: normal;Â line-height: 22px;Â orphans: auto;Â text-align: start;Â text-indent: 0px;Â text-transform: none;Â white-space: normal;Â widows: 1;Â word-spacing: 0px;Â -webkit-text-stroke-width: 0px;Â display: inline !important;Â float: none;Â background-color: rgb(249, 249, 249)">BulkMail_getHistory</span>(''bulkMailRId'') | |||
'''Arguments''' | '''Arguments''' | ||
| Line 17: | Line 18: | ||
'''Example''' | '''Example''' | ||
array bulk=BulkMail_getHistory(15525960); | array bulk=BulkMail_getHistory(15525960); | ||
for(number i=0;i<bulk.Count;i++){ | |||
 | |||
print(bulk[i].NumberOfSent); | |||
 | |||
print(bulk[i].SentDate); | |||
 | |||
print(bulk[i].Id); | |||
} | } | ||
Latest revision as of 08:07, 14 July 2016
BulkMail_getHistory
Get history of bulk mail sent
Syntax
BulkMail_getHistory(bulkMailRId)
Arguments
bulkMailRId: Is a numeric (non-decimal) expression. It is the Rid of the bulk mail.
Return type
array of bulkmail history
Example
array bulk=BulkMail_getHistory(15525960);
for(number i=0;i<bulk.Count;i++){
print(bulk[i].NumberOfSent);
print(bulk[i].SentDate);
print(bulk[i].Id);
}
Availability
Version 6.0.