How to send billing name to admin after succes transaction
-
Hello, your job is very good)
But can you help with a questuion.
It’s needed to send to admin a new customer/user his name, which typed in billng name field. How to get access to this fireld?Using your old gist
add_filter( ‘direct_stripe_success_user_email_content’, function( $message, $token, $amount, $currency, $email_address, $description, $user_id, $button_id){
$message = ‘User ‘ . $email_address . ‘ have been charged ‘ . $amount . $currency . ‘ for ‘ . $description;
return $message;
}, 10, 8 );
thanks.
The page I need help with: [log in to see the link]
Viewing 6 replies - 1 through 6 (of 6 total)
Viewing 6 replies - 1 through 6 (of 6 total)
- The topic ‘How to send billing name to admin after succes transaction’ is closed to new replies.