• Resolved julianlaibach

    (@julianlaibach)


    Hey there,
    i was wondering if its possible to automatically send the Invoices also to the Shop Administrator E-Mail Address. Is there any hook i can use to get this working?
    Best,
    Julian

Viewing 3 replies - 1 through 3 (of 3 total)
  • Plugin Support WebToffee Support

    (@webtoffeesupport)

    Hi @julianlaibach,

    Thanks for reaching out.

    Our plugin is designed to generate documents based on WooCommerce orders and attaches them along with the WooCommerce order status emails. Presently our plugin doesn’t offer any options to attach the invoice document to third-party emails. However, you can use the below-mentioned WooCommerce function to mail the order completion mail to a third-party recipient.

    add_filter( 'woocommerce_email_recipient_customer_completed_order', 'your_email_recipient_filter_function', 10, 2);
    function your_email_recipient_filter_function($recipient, $object) 
    {
        $recipient = $recipient . ', [email protected]'; //Enter your admin mail address here.
        return $recipient;
    }
    Thread Starter julianlaibach

    (@julianlaibach)

    Thanks so much!

    Plugin Support WebToffee Support

    (@webtoffeesupport)

    Hi @julianlaibach,

    Glad to know that the issue is resolved. If you like the plugin and support, please leave us a review here. It would really help us spread the word. Thanks in advance!

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Send Invoice E-Mail to BCC’ is closed to new replies.