Toggle menu
876
3.8K
30.2K
279.1K
Catglobe Wiki
Toggle preferences menu
Toggle personal menu
Not logged in
Your IP address will be publicly visible if you make any edits.

Blacklist removeEmails: Difference between revisions

From Catglobe Wiki
Nguyenduyan (talk | contribs)
Created page with "Category:Blacklist {{HelpFiles}} = Blacklist_removeEmails = == Syntax == Blacklist_removeEmails(array emails); == Arguments == ''emails'': array. Array of tring ema..."
 
No edit summary
 
(2 intermediate revisions by one other user not shown)
Line 4: Line 4:
= Blacklist_removeEmails =
= Blacklist_removeEmails =


 
Remove emails out of Balcklist


== Syntax ==
== Syntax ==
Line 11: Line 11:


== Arguments ==
== Arguments ==
''emails'': array. Array of tring emails
''emails'': array. Array of emails string


== Return type ==
== Return type ==
Line 19: Line 19:


<source lang="javascript">
<source lang="javascript">
array emails = {"an1@test.com", "an2@test.com"};
array emails = {"testemail1@test.com", "testemail2@test.com"};
Blacklist_removeEmails(emails);//2
Blacklist_removeEmails(emails);//2
</source>
</source>

Latest revision as of 05:24, 18 September 2023


Blacklist_removeEmails

Remove emails out of Balcklist

Syntax

Blacklist_removeEmails(array emails);

Arguments

emails: array. Array of emails string

Return type

Number

Example

array emails = {"testemail1@test.com", "testemail2@test.com"};
Blacklist_removeEmails(emails);//2