Description
Return a list of "Contacts" statuses| Status | Meaning |
|---|---|
| single | Opted-in using single opt-in method – NO email confirmation |
| double | Opted-in using double opt-in method – and confirmed by the confirmation key |
| unconfirmed | Opted-in using double opt-in method by NOT YET confirmed |
| unsubscribed | No longer wants to be on the contacts list |
| invalid | We don’t let people use this email address or name – future use |
Usage
$array = oiksp_statuses();Parameters
Returns
array of statusesSource
File name: oik-squeeze/oik-squeeze.phpLines:
1 to 4 of 4
function oiksp_statuses() { $statuses = array( "single", "double", "unconfirmed", "unsubscribed", "invalid" ); return( $statuses ); }View on GitHub
