WC_Email_Customer_Note::get_default_subject()publicWC 3.1.0

Get email subject.

Method of the class: WC_Email_Customer_Note{}

No Hooks.

Return

String.

Usage

$WC_Email_Customer_Note = new WC_Email_Customer_Note();
$WC_Email_Customer_Note->get_default_subject();

Changelog

Since 3.1.0 Introduced.

WC_Email_Customer_Note::get_default_subject() code WC 8.7.0

public function get_default_subject() {
	return __( 'Note added to your {site_title} order from {order_date}', 'woocommerce' );
}