Email_Abstract::is_enabled()
Checks if this email is enabled.
Return
(bool)
Source
File: src/Tickets/Emails/Email_Abstract.php
public function is_enabled(): bool {
$option_key = $this->get_option_key( 'enabled' );
return tribe_is_truthy( tribe_get_option( $option_key, true ) );
}
Changelog
| Version | Description |
|---|---|
| 5.5.10 | Introduced. |