【发布时间】:2018-08-12 18:55:58
【问题描述】:
我正在使用本教程: https://www.nodejsera.com/paypal-payment-integration-using-nodejs-part2.html
它实现PayPal的方式是:
// start payment process
app.get('/buy' , ( req , res ) => {
// create payment object
var payment = {
"intent": "authorize",
"payer": {
"payment_method": "paypal"
},
"redirect_urls": {
"return_url": "http://127.0.0.1:3000/success",
"cancel_url": "http://127.0.0.1:3000/err"
},
"transactions": [{
"amount": {
"total": 39.00,
"currency": "USD"
},
"description": " a book on mean stack "
}]
}
// call the create Pay method
createPay( payment )
.then( ( transaction ) => {
var id = transaction.id;
var links = transaction.links;
var counter = links.length;
while( counter -- ) {
if ( links[counter].method == 'REDIRECT') {
// redirect to paypal where user approves the transaction
return res.redirect( links[counter].href )
}
}
})
.catch( ( err ) => {
console.log( err );
res.redirect('/err');
});
});
// helper functions
var createPay = ( payment ) => {
return new Promise( ( resolve , reject ) => {
paypal.payment.create( payment , function( err , payment ) {
if ( err ) {
reject(err);
}
else {
resolve(payment);
}
});
});
}
然后相应地重定向用户:
app.get('/success' , (req ,res ) => {
res.redirect('/success.html');
console.log(req.query);
})
// error page
app.get('/err' , (req , res) => {
console.log(req.query);
res.redirect('/err.html');
})
我正在使用沙盒,虚拟支付成功。付款完成后,我想向买家(在本例中为我自己)发送一封电子邮件。我如何检索该信息(如果付款正常,用户电子邮件和姓名等)?
还有,关于在 node.js 中使用库来实现自动邮件的任何建议(nodemailer 是一个选项,还是已弃用?)?
谢谢
【问题讨论】: