Email_Abstract::is_enabled()

Checks if this email is enabled.


Return

(bool)


Top ↑

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 ) );
	}

Top ↑

Changelog

Changelog
Version Description
5.5.10 Introduced.