Answers for "woocommerce coupon notifie a spefic email"

PHP
0

woocommerce coupon notifie a spefic email

add_action( 'woocommerce_applied_coupon', 'custom_email_on_applied_coupon', 10, 1 );
function custom_email_on_applied_coupon( $coupon_code ){
    if( $coupon_code == 'bob' ){

        $to = "[email protected]"; // Recipient
        $subject = sprintf( __('Coupon "%s" has been applied'), $coupon_code );
        $content = sprintf( __('The coupon code "%s" has been applied by a customer'), $coupon_code );

        wp_mail( $to, $subject, $content );
    }
}
Posted by: Guest on October-13-2020

Code answers related to "woocommerce coupon notifie a spefic email"

Browse Popular Code Answers by Language