Toggle menu
862
3.8K
30.2K
279.1K
Catglobe Wiki
Toggle personal menu
Not logged in
Your IP address will be publicly visible if you make any edits.

BulkMail getHistory: Difference between revisions

From Catglobe Wiki
No edit summary
No edit summary
 
(3 intermediate revisions by the same user not shown)
Line 1: Line 1:
[[Category:Email_and_SMS_Functions]] 
==== BulkMail_getHistory ====
==== BulkMail_getHistory ====


Send a bulk mail specified by its id.
Get history of bulk mail sent


'''Syntax'''
'''Syntax'''


sendBulkMail(''bulkMailRId'')
<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); for(number i=0;i<bulk.Count;i++){
array bulk=BulkMail_getHistory(15525960);


  print(bulk[i].NumberOfSent);
for(number i=0;i<bulk.Count;i++){
print(bulk[i].SentDate);
 
print(bulk[i].Id);
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.