Description
int this->
IsALWL (string from, string to);
Check if the record, with the from email address and the to email address values, in in the auto light white list database. Return 1 if true, 0 if false.
|
Example.
Source:
CS_ADMIN_SCRIPT this = new CS_ADMIN_SCRIPT($_this);
int Main(CAdminRequest pRequest, CAdminResponse pResponse)
{
this->Print(this->Format("%d",this->IsALWL("info@caronteantispam.it","info@inrete.com")));
return 0;
}
|
Out:
|