Function __global->email_spam_check
Definitions
sources/mail2.php
- Spam check an e-mail.
- Visibility: public
- Is abstract?: No
- Is static?: No
- Is final?: No
- Returns: array
Parameters
| Name | Type | Passed by reference? | Variadic? | Default | Set | Range | Description |
|---|---|---|---|---|---|---|---|
| $mime_email | string | No | No | required parameter | N/A | N/A | The e-mail |
Returns
- A tuple: The spam report, and the spam score, raw response, HTTP message
- Type: array
- Set: N/A
- Range: N/A
Preview
Code (PHP)
/**
* Spam check an e-mail.
*
* @param string $mime_email The e-mail
* @return array A tuple: The spam report, and the spam score, raw response, HTTP message
*/
function email_spam_check(string $mime_email) : array
* Spam check an e-mail.
*
* @param string $mime_email The e-mail
* @return array A tuple: The spam report, and the spam score, raw response, HTTP message
*/
function email_spam_check(string $mime_email) : array

