Update subject

This commit is contained in:
Mike Jolley 2019-03-13 14:38:04 +00:00
parent efc46344fc
commit a44cba5923
1 changed files with 5 additions and 3 deletions

View File

@ -57,7 +57,7 @@ if ( ! class_exists( 'WC_Email_Cancelled_Order', false ) ) :
* @return string * @return string
*/ */
public function get_default_subject() { public function get_default_subject() {
return __( '[{site_title}]: {order_billing_full_name} has cancelled order #{order_number}', 'woocommerce' ); return __( '[{site_title}]: Order #{order_number} belonging to {order_billing_full_name} has been cancelled', 'woocommerce' );
} }
/** /**
@ -104,7 +104,8 @@ if ( ! class_exists( 'WC_Email_Cancelled_Order', false ) ) :
*/ */
public function get_content_html() { public function get_content_html() {
return wc_get_template_html( return wc_get_template_html(
$this->template_html, array( $this->template_html,
array(
'order' => $this->object, 'order' => $this->object,
'email_heading' => $this->get_heading(), 'email_heading' => $this->get_heading(),
'sent_to_admin' => true, 'sent_to_admin' => true,
@ -121,7 +122,8 @@ if ( ! class_exists( 'WC_Email_Cancelled_Order', false ) ) :
*/ */
public function get_content_plain() { public function get_content_plain() {
return wc_get_template_html( return wc_get_template_html(
$this->template_plain, array( $this->template_plain,
array(
'order' => $this->object, 'order' => $this->object,
'email_heading' => $this->get_heading(), 'email_heading' => $this->get_heading(),
'sent_to_admin' => true, 'sent_to_admin' => true,