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 countRecipients: Difference between revisions

From Catglobe Wiki
No edit summary
No edit summary
 
Line 2: Line 2:
{{HelpFiles}}
{{HelpFiles}}


====BulkMail_countRecipients====
==== BulkMail_countRecipients ====


Count the number of recipients whom the bulk mail is not sent to
Count the number of recipients whom the bulk mail is not sent to
Line 8: Line 8:
'''Syntax'''
'''Syntax'''


BulkMail_countRecipients(''bulkMailResourceId'')
BulkMail_countRecipients(''bulkMailResourceId''[,''MaxToSend''])


'''Arguments'''
'''Arguments'''


* ''bulkMailResourceId'': is a number expression. It is the bulk mail's resource id
*''bulkMailResourceId'': is a number expression. It is the bulk mail's resource id
 
''MaxToSend:'' Is a numeric (non-decimal) expression. It is the max email which send.


'''Return value'''
'''Return value'''
Line 22: Line 24:
number bmId = 8637;
number bmId = 8637;


string guid = getResourceGuid(Resource_Type_BulkMail, bmId);  
string guid = getResourceGuid(Resource_Type_BulkMail, bmId);


number bmRId = getResourceUniqueIdFromGuid(guid);
number bmRId = getResourceUniqueIdFromGuid(guid);


number n = BulkMail_countRecipients(bmRId);
number n = BulkMail_countRecipients(bmRId);
number m = BulkMail_countRecipients(bmRId, 20); // count 20 recipients


print(n);
print(n);
Line 32: Line 36:
'''Availability'''
'''Availability'''


Version 5.6
Version 5.6 __NOTOC__
__NOTOC__
<!-- imported from file: 6244.htm-->
<!-- imported from file: 6244.htm-->

Latest revision as of 08:40, 1 July 2016


BulkMail_countRecipients

Count the number of recipients whom the bulk mail is not sent to

Syntax

BulkMail_countRecipients(bulkMailResourceId[,MaxToSend])

Arguments

  • bulkMailResourceId: is a number expression. It is the bulk mail's resource id

MaxToSend: Is a numeric (non-decimal) expression. It is the max email which send.

Return value

number

Example

number bmId = 8637;

string guid = getResourceGuid(Resource_Type_BulkMail, bmId);

number bmRId = getResourceUniqueIdFromGuid(guid);

number n = BulkMail_countRecipients(bmRId);

number m = BulkMail_countRecipients(bmRId, 20); // count 20 recipients

print(n);

Availability

Version 5.6