Function __global->find_system_email_addresses
Definitions
sources/mail.php
- Gets a list of all system-owned e-mail addresses.This is sometimes needed for internal processing.
- Visibility: public
- Is abstract?: No
- Is static?: No
- Is final?: No
- Returns: array
Parameters
| Name | Type | Passed by reference? | Variadic? | Default | Set | Range | Description |
|---|---|---|---|---|---|---|---|
| $include_all | boolean | No | No | True | N/A | N/A | Include all e-mail domains, as opposed to just the main outgoing one |
Returns
- A map of system e-mail address to domain name it uses
- Type: array
- Set: N/A
- Range: N/A
Preview
Code (PHP)
/**
* Gets a list of all system-owned e-mail addresses.This is sometimes needed for internal processing.
*
* @param boolean $include_all Include all e-mail domains, as opposed to just the main outgoing one
* @return array A map of system e-mail address to domain name it uses
*/
function find_system_email_addresses(bool $include_all = true) : array
* Gets a list of all system-owned e-mail addresses.This is sometimes needed for internal processing.
*
* @param boolean $include_all Include all e-mail domains, as opposed to just the main outgoing one
* @return array A map of system e-mail address to domain name it uses
*/
function find_system_email_addresses(bool $include_all = true) : array

