Function __global->newsletter_is_html
Definitions
sources/newsletter.php
- Find if a newsletter is HTML.
- Visibility: public
- Is abstract?: No
- Is static?: No
- Is final?: No
- Returns: bool
Parameters
| Name | Type | Passed by reference? | Variadic? | Default | Set | Range | Description |
|---|---|---|---|---|---|---|---|
| $message | ?string | No | No | Null | N/A | N/A | Newsletter message after wrapping applied (null: just look at wrapper on its own) |
Returns
- Whether it is
- Type: boolean
- Set: N/A
- Range: N/A
Preview
Code (PHP)
/**
* Find if a newsletter is HTML.
*
* @param ?string $message Newsletter message after wrapping applied (null: just look at wrapper on its own)
* @return boolean Whether it is
*/
function newsletter_is_html(?string $message = null) : bool
* Find if a newsletter is HTML.
*
* @param ?string $message Newsletter message after wrapping applied (null: just look at wrapper on its own)
* @return boolean Whether it is
*/
function newsletter_is_html(?string $message = null) : bool

