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
Cg_pham (talk | contribs)
No edit summary
No edit summary
Line 4: Line 4:
====BulkMail_countRecipients====
====BulkMail_countRecipients====


Count the number of recipients when the bulk mail is sent (without sending it)
Count the number of recipients whom the bulk mail is not sent to


'''Syntax'''
'''Syntax'''
Line 20: Line 20:
'''Example'''
'''Example'''


''number n = BulkMail_countRecipients(12345);''
number bmId = 8637;
 
string guid = getResourceGuid(Resource_Type_BulkMail, bmId);
 
number bmRId = getResourceUniqueIdFromGuid(guid);
 
number n = BulkMail_countRecipients(bmRId);
 
print(n);


'''Availability'''
'''Availability'''

Revision as of 07:16, 20 December 2011


BulkMail_countRecipients

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

Syntax

BulkMail_countRecipients(bulkMailResourceId)

Arguments

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

Return value

number

Example

number bmId = 8637;

string guid = getResourceGuid(Resource_Type_BulkMail, bmId);

number bmRId = getResourceUniqueIdFromGuid(guid);

number n = BulkMail_countRecipients(bmRId);

print(n);

Availability

Version 5.6