Function Mail_dispatcher_php->is_dispatcher_available
Definitions
sources/mail.php
- Find whether the dispatcher instance is capable of sending e-mails.
- Visibility: public
- Is abstract?: No
- Is static?: No
- Is final?: No
- Returns: bool
Parameters
| Name | Type | Passed by reference? | Variadic? | Default | Set | Range | Description |
|---|---|---|---|---|---|---|---|
| $advanced_parameters | array | No | No | required parameter | N/A | N/A | List of advanced parameters |
Returns
- Whether the dispatcher instance is capable of sending e-mails
- Type: boolean
- Set: N/A
- Range: N/A
Preview
Code (PHP)
/**
* Find whether the dispatcher instance is capable of sending e-mails.
*
* @param array $advanced_parameters List of advanced parameters
* @return boolean Whether the dispatcher instance is capable of sending e-mails
*/
public function is_dispatcher_available(array $advanced_parameters) : bool
* Find whether the dispatcher instance is capable of sending e-mails.
*
* @param array $advanced_parameters List of advanced parameters
* @return boolean Whether the dispatcher instance is capable of sending e-mails
*/
public function is_dispatcher_available(array $advanced_parameters) : bool

