Difference between revisions of "BulkMail getHistory"
Line 1: | Line 1: | ||
==== BulkMail_getHistory ==== | ==== BulkMail_getHistory ==== | ||
− | + | Get history of bulk mail sent | |
'''Syntax''' | '''Syntax''' | ||
Line 17: | Line 17: | ||
'''Example''' | '''Example''' | ||
− | array bulk=BulkMail_getHistory(15525960); | + | array bulk=BulkMail_getHistory(15525960); |
for(number i=0;i<bulk.Count;i++){ | for(number i=0;i<bulk.Count;i++){ | ||
− | print(bulk[i].NumberOfSent); | + | print(bulk[i].NumberOfSent); |
− | print(bulk[i].SentDate); | + | print(bulk[i].SentDate); |
− | print(bulk[i].Id); | + | print(bulk[i].Id); |
} | } |
Revision as of 09:47, 1 July 2016
BulkMail_getHistory
Get history of bulk mail sent
Syntax
sendBulkMail(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.