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; } /** * Get the note for when the email improvements feature is disabled. * * @return Note */ 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; } }