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.

Blacklist addEmails: Difference between revisions

From Catglobe Wiki
Nguyenduyan (talk | contribs)
No edit summary
Nguyenduyan (talk | contribs)
No edit summary
Line 19: Line 19:
The first way: Each email is an EmailBlacklist object
The first way: Each email is an EmailBlacklist object


The second way: Each email is an array with pair of email and comment  
The second way: Each email is an array with pair of email and comment {email, comment}


== Return type ==
== Return type ==

Revision as of 04:21, 11 August 2017


Blacklist_addEmails

Add emails to blacklist

Syntax

Blacklist_addEmails(array emails);

Arguments

emails: array. Array of emails.

There are 2 ways of using array emails:

The first way: Each email is an EmailBlacklist object

The second way: Each email is an array with pair of email and comment {email, comment}

Return type

Number. Number of emails added to Blacklist

Example

//Way 1: Each email is an EmailBlacklist object
EmailBlacklist email1 = new EmailBlacklist ("[email protected]", "comment1");
EmailBlacklist email2 = new EmailBlacklist ("[email protected]", "comment2");
array emails = {email1, email2};
Blacklist_addEmails(emails);//2

//Way 2: Each email is an array with pair of email and comment 
array email1 = {"[email protected]", "comment2"};
array email2 = {"[email protected]", "comment2"};
array emails = {email1, email2};
Blacklist_addEmails(emails);//2