WC_Email_Customer_POS_Refunded_Order::get_pos_store_emailprivateWC 1.0

Get the store email from POS settings.

Method of the class: WC_Email_Customer_POS_Refunded_Order{}

No Hooks.

Returns

String.

Usage

// private - for code of main (parent) class only
$result = $this->get_pos_store_email();

WC_Email_Customer_POS_Refunded_Order::get_pos_store_email() code WC 10.7.0

private function get_pos_store_email() {
	return $this->format_string(
		get_option( 'woocommerce_pos_store_email', PointOfSaleDefaultSettings::get_default_store_email() )
	);
}