Automattic\WooCommerce\Admin\API

Notes::track_opened_emailpublicWC 1.0

Deprecated since 10.6.0 This method is no longer functional as the email tracking feature was removed in WooCommerce 9.9.. It is no longer supported and may be removed in future releases. It is recommended to replace this function with the same one.

Track opened emails.

Method of the class: Notes{}

No Hooks.

Returns

null. Nothing (null).

Usage

$Notes = new Notes();
$Notes->track_opened_email( $request );
$request(WP_REST_Request) (required)
Request object.

Changelog

Deprecated since 10.6.0 This method is no longer functional as the email tracking feature was removed in WooCommerce 9.9.

Notes::track_opened_email() code WC 10.8.1

public function track_opened_email( $request ) {
	wc_deprecated_function( __METHOD__, '10.6.0' );
}