Difference between revisions of "SendBulkMail"

From Catglobe Wiki
Jump to: navigation, search
(sendBulkMail)
(Tag: visualeditor)
(Tag: visualeditor)
Line 8: Line 8:
 
'''Syntax'''
 
'''Syntax'''
  
sendBulkMail(''bulkMailId''[,''MaxToSend''[, schedule]])
+
sendBulkMail(''bulkMailId''[,''MaxToSend''])
  
 
'''Arguments'''
 
'''Arguments'''
Line 15: Line 15:
  
 
''maxToSend:'' Is a numeric (non-decimal) expression. It is the max email which send. -1 to send to all.
 
''maxToSend:'' Is a numeric (non-decimal) expression. It is the max email which send. -1 to send to all.
 
''schedule:'' Use the given schedule to send the mails see [[CatTaskInstantSchedule class]], defaults to instant.
 
  
 
'''Return type'''
 
'''Return type'''
Line 27: Line 25:
  
 
sendBulkMail(1,20); // 20 is max number email
 
sendBulkMail(1,20); // 20 is max number email
 
sendBulkMail(1,20, new CatTaskSpecificTimeSchedule(new DateTime({...}));
 
  
 
'''Availability'''
 
'''Availability'''
  
Version 6.0. maxSend from Nov. 2016, schedule from June 2017.
+
Version 6.0. maxSend from Nov. 2016  
  
 
__NOTOC__
 
__NOTOC__
 
<!-- imported from file: 3750.htm-->
 
<!-- imported from file: 3750.htm-->

Revision as of 05:40, 31 May 2017



sendBulkMail

Send a bulk mail specified by its id.

Syntax

sendBulkMail(bulkMailId[,MaxToSend])

Arguments

bulkMailId: Is a numeric (non-decimal) expression. It is the id of the bulk mail.

maxToSend: Is a numeric (non-decimal) expression. It is the max email which send. -1 to send to all.

Return type

empty

Example

sendBulkMail(1);

sendBulkMail(1,20); // 20 is max number email

Availability

Version 6.0. maxSend from Nov. 2016