Automattic\WooCommerce\Internal\Admin\EmailImprovements

EmailImprovements::should_notify_merchant_about_email_improvementspublic staticWC 1.0

Check if we should notice the merchant about email improvements.

Method of the class: EmailImprovements{}

No Hooks.

Returns

true|false. True if we should notice the merchant about email improvements, false otherwise.

Usage

$result = EmailImprovements::should_notify_merchant_about_email_improvements();

EmailImprovements::should_notify_merchant_about_email_improvements() code WC 10.8.1

public static function should_notify_merchant_about_email_improvements() {
	return ! FeaturesUtil::feature_is_enabled( 'email_improvements' );
}