Automattic\WooCommerce\Internal\Admin\Notes
EmailImprovements::get_email_improvements_enabled_note
Get the note for when the email improvements feature is enabled for existing stores.
Method of the class: EmailImprovements{}
No Hooks.
Returns
Note.
Usage
$result = EmailImprovements::get_email_improvements_enabled_note();
EmailImprovements::get_email_improvements_enabled_note() EmailImprovements::get email improvements enabled note code WC 10.3.3
private static function get_email_improvements_enabled_note() {
$note = new Note();
$note->set_title( __( 'Your store emails have had an upgrade!', 'woocommerce' ) );
$note->set_content( __( 'We’ve made some exciting improvements to your 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 changes.', 'woocommerce' ) );
$note->set_type( Note::E_WC_ADMIN_NOTE_INFORMATIONAL );
$note->set_name( self::NOTE_NAME );
$note->set_source( 'woocommerce-admin' );
$note->add_action(
'customize-your-emails',
__( 'Customize your emails', 'woocommerce' ),
'?page=wc-settings&tab=email'
);
return $note;
}