Automattic\WooCommerce\Internal\Admin\EmailPreview

EmailPreview::get_shipping_method()publicWC 1.0

Get the shipping method for the preview email.

Method of the class: EmailPreview{}

No Hooks.

Return

String.

Usage

$EmailPreview = new EmailPreview();
$EmailPreview->get_shipping_method();

EmailPreview::get_shipping_method() code WC 9.7.1

public function get_shipping_method() {
	return __( 'Flat rate', 'woocommerce' );
}