• Alright, so since I updated to the latest versions of both WordPress and Woocommerce, I am no longer receiving the ‘cancelled order’ mails. The new order mails are still coming in though. My Mail Logger plugin also shows that the new order mails are being sent out but the cancelled order ones aren’t logged. I checked the woocommerce settings and this notification mail is active/enabled. Any ideas? Please help me out guys, would be greatly appreciated!

    PS: I can still manually send the canceled order mails out – but the automatic ones stopped working. Problem persists regardless of theme.

    • This topic was modified 8 years, 9 months ago by tdk09.
    • This topic was modified 8 years, 9 months ago by tdk09.
Viewing 2 replies - 1 through 2 (of 2 total)
  • Thread Starter tdk09

    (@tdk09)

    Update: downgraded to 2.7, and now the cancelled orders sent automatically again.
    Furthermore, I noticed an update in the Reply-to of new order mails to reply to the name and mail of the customers directly:

    public function get_headers() {
    $header = “Content-Type: ” . $this->get_content_type() . “\r\n”;

    if ( ‘new_order’ === $this->id ) {
    $header .= ‘Reply-to: ‘ . $this->object->get_billing_first_name() . ‘ ‘ . $this->object->get_billing_last_name() . ‘ <‘ . $this->object->get_billing_email() . “>\r\n”;
    }

    return apply_filters( ‘woocommerce_email_headers’, $header, $this->id, $this->object );
    }

    If you would like to reset it to the old version go ahead and replace with:

    public function get_headers() {
    return apply_filters( ‘woocommerce_email_headers’, “Content-Type: ” . $this->get_content_type() . “\r\n”, $this->id, $this->object );
    }

    • This reply was modified 8 years, 9 months ago by tdk09.

    Same problem here.

Viewing 2 replies - 1 through 2 (of 2 total)

The topic ‘Not sending cancelled order mails’ is closed to new replies.