• Resolved kosy33

    (@kosy33)


    Hi,

    Thank you for your great plugin. i was wondering if there is a way to change the sender of the send-quote email rather than woocommerce email settings.
    Thank you for you answer
    Regards

Viewing 2 replies - 1 through 2 (of 2 total)
  • Thread Starter kosy33

    (@kosy33)

    solved adding these lines in functions.php

    add_filter( 'woocommerce_email_from_address', function( $from_email, $wc_email ){
        if( $wc_email->id == 'qwc_send_quote' )
            $from_email = '[email protected]';
        return $from_email;
    }, 10, 2 );
    Plugin Author pinal.shah

    (@pinalshah)

    I’m glad you were able to find a solution. Since the emails sent by the plugin use WooCommerce email classes. In most cases, existing WC hooks can be used to customize the emails.

    Pinal

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘change email sender sender for quote’ is closed to new replies.