Difference between revisions of "BulkMail send"
Nguyenduyan (talk | contribs) |
Nguyenduyan (talk | contribs) (Tag: visualeditor) |
||
Line 16: | Line 16: | ||
''MaxToSend:'' Is a numeric (non-decimal) expression. It is the max email which send. | ''MaxToSend:'' Is a numeric (non-decimal) expression. It is the max email which send. | ||
− | ''schedule:'' CatTaskSchedule object (CatTaskInstantSchedule, CatTaskSpecificTimeSchedule, CatTaskNeverSchedule) | + | ''schedule:'' CatTaskSchedule object ([[CatTaskInstantSchedule class|CatTaskInstantSchedule]], [[CatTaskSpecificTimeSchedule class|CatTaskSpecificTimeSchedule]], [[CatTaskNeverSchedule class|CatTaskNeverSchedule]]) |
'''Return type''' | '''Return type''' |
Revision as of 04:04, 31 May 2017
BulkMail_send
Send bulk mail
Syntax
BulkMail_send(bulkMailResourceId[,MaxToSend][,schedule])
Arguments
bulkMailResourceId:
MaxToSend: Is a numeric (non-decimal) expression. It is the max email which send.
schedule: CatTaskSchedule object (CatTaskInstantSchedule, CatTaskSpecificTimeSchedule, CatTaskNeverSchedule)
Return type
Returns CatTask instance id
Example with maxTosend
number bulkMailResourceId = 9399212;
BulkMail_send(bulkMailResourceId);
BulkMail_send(bulkMailResourceId, 20);// 20 is max email which will send
Example with schedule bulkmail
//schedule for send bulkmail at a specific time
number bulkmailRId = 15562486;
number maxToSend = 1;
DateTime dt = new DateTime("2017/05/31 03:10");
CatTaskSpecificTimeSchedule schedule = new CatTaskSpecificTimeSchedule(dt);
BulkMail_send(bulkmailRId, maxToSend, schedule);//Returns CatTask instance id: 104701 (CatTaskMetaDataId: 54184)
//schedule for send bulkmail now
number bulkmailRId = 15562486;
number maxToSend = 1;
CatTaskInstantSchedule schedule = new CatTaskInstantSchedule();
BulkMail_send(bulkmailRId, maxToSend, schedule);//Returns CatTask instance id: 104702 (CatTaskMetaDataId: 54185)
//stop schedule of sending bulkmail
CatTaskScheduleHelper csHelper = new CatTaskScheduleHelper();
number taskId = 104701;
CatTaskNeverSchedule schedule = new CatTaskNeverSchedule();
csHelper.RescheduleByInstanceId(taskId, schedule);