Get shipping address from paypal order detail in javascriptHow to validate an email address in JavaScript?How do I remove a property from a JavaScript object?How do you get a timestamp in JavaScript?How can I get query string values in JavaScript?Get the current URL with JavaScript?Get selected value in dropdown list using JavaScript?How do I get the current date in JavaScript?Get selected text from a drop-down list (select box) using jQueryHow do I remove a particular element from an array in JavaScript?jQuery Get Selected Option From Dropdown
Problems with numbers (result of calculations) alignment using siunitx package inside tabular environment
When and why did journal article titles become descriptive, rather than creatively allusive?
What happened to Rhaegal?
What happens if I start too many background jobs?
What is the word which sounds like "shtrass"?
What word means "to make something obsolete"?
How can I close a gap between my fence and my neighbor's that's on his side of the property line?
Is lying to get "gardening leave" fraud?
Can fracking help reduce CO2?
Can commander tax be proliferated?
The barbers paradox first order logic formalization
Selecting a secure PIN for building access
Was Hulk present at this event?
Public Salesforce Site and Security Review
Unexpected email from Yorkshire Bank
Why do freehub and cassette have only one position that matches?
Hang 20lb projector screen on Hardieplank
Topological Spaces homeomorphic
What is the limiting factor for a CAN bus to exceed 1Mbps bandwidth?
Why is the SNP putting so much emphasis on currency plans?
Is it the same airport YUL and YMQ in Canada?
Was the ancestor of SCSI, the SASI protocol, nothing more than a draft?
How long can a 35mm film be used/stored before it starts to lose its quality after expiry?
Junior developer struggles: how to communicate with management?
Get shipping address from paypal order detail in javascript
How to validate an email address in JavaScript?How do I remove a property from a JavaScript object?How do you get a timestamp in JavaScript?How can I get query string values in JavaScript?Get the current URL with JavaScript?Get selected value in dropdown list using JavaScript?How do I get the current date in JavaScript?Get selected text from a drop-down list (select box) using jQueryHow do I remove a particular element from an array in JavaScript?jQuery Get Selected Option From Dropdown
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty height:90px;width:728px;box-sizing:border-box;
So I am trying to make a e-commerce website for someone and therefore, have set up a paypal button to accept payments. I ask the client to pay the price then I send the dropdown/radio button data to php in order to send myself (via the php mailer) the order details (like color/size of the clothing as well as the order ID to identify it). But I found that it would be much easier and automatic to just get the buyer's shipping address and send it by email along with the other details. Right now I have only found a way to get the order ID, and the buyer's name, but I really need the address.
onApprove: function (data, actions)
return actions.order.capture().then(function (details)
var BlackCheckbox = document.getElementById("black");
// Getting the color by checking if the checkbox `black` is checked or not
var color = (BlackCheckbox.checked === true) ? 'Black' :
'White';
// Finding the size by seeing which size the user has selected from the dropdown.
var size = $('span.size').text();
var item = 'Script Windbreaker';
var name = details.payer.name.given_name;
var address = details.payer.address.street_address;
alert('The address is ' + address);
$.post('Payment_Validation.php',
postitem: item,
postname: name,
postcolor: color,
postsize: size,
postid: data.orderID
, function () );
return fetch('/paypal-transaction-complete',
method: 'post',
body: JSON.stringify(
orderID: data.orderID,
)
);
);
,
And here is the php:
<?php
$item = $_POST['postitem'];
$name = $_POST['postname'];
$color = $_POST['postcolor'];
$size = $_POST['postsize'];
$id = $_POST['postid'];
$to='taha.rhidouani@gmail.com';
$subject= 'Payment information for order '.$id;
$message="Item: ".$item."n"."Color: ".$color."n"."Name of buyer: ".$name."n"."Size: ".$size."n"."Purchase ID: ".$id."nn"."Check full payment details: https://www.paypal.com/mep/dashboard";
mail($to, $subject, $message);
?>
I am trying to get the address with:
var address = details.payer.address.street_address;
And testing it with:
alert('The address is ' + address);
But it simply returns as undefined.
javascript html paypal e-commerce
add a comment |
So I am trying to make a e-commerce website for someone and therefore, have set up a paypal button to accept payments. I ask the client to pay the price then I send the dropdown/radio button data to php in order to send myself (via the php mailer) the order details (like color/size of the clothing as well as the order ID to identify it). But I found that it would be much easier and automatic to just get the buyer's shipping address and send it by email along with the other details. Right now I have only found a way to get the order ID, and the buyer's name, but I really need the address.
onApprove: function (data, actions)
return actions.order.capture().then(function (details)
var BlackCheckbox = document.getElementById("black");
// Getting the color by checking if the checkbox `black` is checked or not
var color = (BlackCheckbox.checked === true) ? 'Black' :
'White';
// Finding the size by seeing which size the user has selected from the dropdown.
var size = $('span.size').text();
var item = 'Script Windbreaker';
var name = details.payer.name.given_name;
var address = details.payer.address.street_address;
alert('The address is ' + address);
$.post('Payment_Validation.php',
postitem: item,
postname: name,
postcolor: color,
postsize: size,
postid: data.orderID
, function () );
return fetch('/paypal-transaction-complete',
method: 'post',
body: JSON.stringify(
orderID: data.orderID,
)
);
);
,
And here is the php:
<?php
$item = $_POST['postitem'];
$name = $_POST['postname'];
$color = $_POST['postcolor'];
$size = $_POST['postsize'];
$id = $_POST['postid'];
$to='taha.rhidouani@gmail.com';
$subject= 'Payment information for order '.$id;
$message="Item: ".$item."n"."Color: ".$color."n"."Name of buyer: ".$name."n"."Size: ".$size."n"."Purchase ID: ".$id."nn"."Check full payment details: https://www.paypal.com/mep/dashboard";
mail($to, $subject, $message);
?>
I am trying to get the address with:
var address = details.payer.address.street_address;
And testing it with:
alert('The address is ' + address);
But it simply returns as undefined.
javascript html paypal e-commerce
add a comment |
So I am trying to make a e-commerce website for someone and therefore, have set up a paypal button to accept payments. I ask the client to pay the price then I send the dropdown/radio button data to php in order to send myself (via the php mailer) the order details (like color/size of the clothing as well as the order ID to identify it). But I found that it would be much easier and automatic to just get the buyer's shipping address and send it by email along with the other details. Right now I have only found a way to get the order ID, and the buyer's name, but I really need the address.
onApprove: function (data, actions)
return actions.order.capture().then(function (details)
var BlackCheckbox = document.getElementById("black");
// Getting the color by checking if the checkbox `black` is checked or not
var color = (BlackCheckbox.checked === true) ? 'Black' :
'White';
// Finding the size by seeing which size the user has selected from the dropdown.
var size = $('span.size').text();
var item = 'Script Windbreaker';
var name = details.payer.name.given_name;
var address = details.payer.address.street_address;
alert('The address is ' + address);
$.post('Payment_Validation.php',
postitem: item,
postname: name,
postcolor: color,
postsize: size,
postid: data.orderID
, function () );
return fetch('/paypal-transaction-complete',
method: 'post',
body: JSON.stringify(
orderID: data.orderID,
)
);
);
,
And here is the php:
<?php
$item = $_POST['postitem'];
$name = $_POST['postname'];
$color = $_POST['postcolor'];
$size = $_POST['postsize'];
$id = $_POST['postid'];
$to='taha.rhidouani@gmail.com';
$subject= 'Payment information for order '.$id;
$message="Item: ".$item."n"."Color: ".$color."n"."Name of buyer: ".$name."n"."Size: ".$size."n"."Purchase ID: ".$id."nn"."Check full payment details: https://www.paypal.com/mep/dashboard";
mail($to, $subject, $message);
?>
I am trying to get the address with:
var address = details.payer.address.street_address;
And testing it with:
alert('The address is ' + address);
But it simply returns as undefined.
javascript html paypal e-commerce
So I am trying to make a e-commerce website for someone and therefore, have set up a paypal button to accept payments. I ask the client to pay the price then I send the dropdown/radio button data to php in order to send myself (via the php mailer) the order details (like color/size of the clothing as well as the order ID to identify it). But I found that it would be much easier and automatic to just get the buyer's shipping address and send it by email along with the other details. Right now I have only found a way to get the order ID, and the buyer's name, but I really need the address.
onApprove: function (data, actions)
return actions.order.capture().then(function (details)
var BlackCheckbox = document.getElementById("black");
// Getting the color by checking if the checkbox `black` is checked or not
var color = (BlackCheckbox.checked === true) ? 'Black' :
'White';
// Finding the size by seeing which size the user has selected from the dropdown.
var size = $('span.size').text();
var item = 'Script Windbreaker';
var name = details.payer.name.given_name;
var address = details.payer.address.street_address;
alert('The address is ' + address);
$.post('Payment_Validation.php',
postitem: item,
postname: name,
postcolor: color,
postsize: size,
postid: data.orderID
, function () );
return fetch('/paypal-transaction-complete',
method: 'post',
body: JSON.stringify(
orderID: data.orderID,
)
);
);
,
And here is the php:
<?php
$item = $_POST['postitem'];
$name = $_POST['postname'];
$color = $_POST['postcolor'];
$size = $_POST['postsize'];
$id = $_POST['postid'];
$to='taha.rhidouani@gmail.com';
$subject= 'Payment information for order '.$id;
$message="Item: ".$item."n"."Color: ".$color."n"."Name of buyer: ".$name."n"."Size: ".$size."n"."Purchase ID: ".$id."nn"."Check full payment details: https://www.paypal.com/mep/dashboard";
mail($to, $subject, $message);
?>
I am trying to get the address with:
var address = details.payer.address.street_address;
And testing it with:
alert('The address is ' + address);
But it simply returns as undefined.
javascript html paypal e-commerce
javascript html paypal e-commerce
asked Mar 22 at 20:06
TahaIncTahaInc
204
204
add a comment |
add a comment |
0
active
oldest
votes
Your Answer
StackExchange.ifUsing("editor", function ()
StackExchange.using("externalEditor", function ()
StackExchange.using("snippets", function ()
StackExchange.snippets.init();
);
);
, "code-snippets");
StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "1"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);
else
createEditor();
);
function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);
);
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55307090%2fget-shipping-address-from-paypal-order-detail-in-javascript%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
0
active
oldest
votes
0
active
oldest
votes
active
oldest
votes
active
oldest
votes
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55307090%2fget-shipping-address-from-paypal-order-detail-in-javascript%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown