Automattic\WooCommerce\Internal\Admin\Notes

EmailImprovements::get_try_email_improvements_noteprivate staticWC 1.0

Get the note for when the email improvements feature is disabled.

Method of the class: EmailImprovements{}

No Hooks.

Returns

Note.

Usage

$result = EmailImprovements::get_try_email_improvements_note();

EmailImprovements::get_try_email_improvements_note() code WC 10.3.3

private static function get_try_email_improvements_note() {
	$note = new Note();
	$note->set_title( __( 'Store emails have had an upgrade!', 'woocommerce' ) );
	$note->set_content( __( 'We’ve made some exciting improvements to our email templates, including modern, shopper-friendly designs and new customization options. And if you’re using a block theme, you can automatically sync your theme styles! Head to your email settings to explore the new features.', 'woocommerce' ) );
	$note->set_type( Note::E_WC_ADMIN_NOTE_INFORMATIONAL );
	$note->set_name( self::NOTE_NAME );
	$note->set_source( 'woocommerce-admin' );
	$note->add_action(
		'try-the-new-templates',
		__( 'Try the new templates', 'woocommerce' ),
		'?page=wc-settings&tab=email&try-new-templates'
	);
	return $note;
}