How to attach the packing slip to a specific email type?

Add below filter to your (child) themes functions.php in order to attach the packing slip to a specific email type. Below example will add the packing slip to the New Order email. function attach_packing_slip_to_email( $attachments, $status, $order ) { // only attach to emails with WC_Order object. if ( ! $order instanceof WC_Order ) { Read more about How to attach the packing slip to a specific email type?[…]

How to add a recipient to a specific email?

In order to add a recipient to a specific email type, use below filter by adding it to your themes functions.php file. Make sure to change the YOUR_EMAIL_ADDRESS to the desired email address. /** * Add recipient to Customer Credit Note email. * * @param string $headers WooCommerce email headers. * @param string $status WooCommerce Read more about How to add a recipient to a specific email?[…]

How to generate a Credit Note and send it to the customer?

Our plugin will automatically generate a Credit Note for every Refund Order. Simply Partially or Fully Refund the Order and the Credit Note will show up on the Edit Order page. Make sure to add the Credit Note to the desired email type. Our plugin has added a Customer credit note email which will give Read more about How to generate a Credit Note and send it to the customer?[…]