我已成功使用PayPal IPN and a listener创建了一个小的“立即付款”按钮。按钮本身是向导生成的。
付款后,用户将被重定向到我的主机上的返回/“谢谢”页面。
一切都按预期工作,但我也需要在“谢谢”页面上收到客户电子邮件:我该怎么做?
答案 0 :(得分:1)
您可以使用付款数据传输(PDT)获取用户电子邮件,该数据传输将名为tx
的GET变量发送到您的重定向网址。
tx
变量包含一个交易号,您可以使用该号码向Paypal的服务器发送请求并检索交易信息。
我上次使用PDT的时间是一年前,但我相信您的Paypal帐户中有一个设置,您需要启用并设置重定向网址才能生效。
以下是一些更详细描述PDT的链接:
以下是如何解析向Paypal发送帖子请求并解析数据的示例。我只是从旧文件中挖出来的。所以不能保证它有效。这是基于Paypal用作php的示例的脚本。你可以改用curl,这可能是更好的选择。我认为使用fsockopen存在某种安全问题。
//Paypal will give you a token to use once you enable PDT
$auth_token = 'token';
//Transaction number
$tx_token = $_GET['tx'];
$payPalUrl = ( $dev === true ) ? 'ssl://www.sandbox.paypal.com' : 'ssl://www.paypal.com';
$req = 'cmd=_notify-synch';
$req .= "&tx=$tx_token&at=$auth_token";
$header .= "POST /cgi-bin/webscr HTTP/1.0\r\n";
$header .= "Content-Type: application/x-www-form-urlencoded\r\n";
$header .= "Content-Length: " . strlen($req) . "\r\n\r\n";
$fp = fsockopen ($payPalUrl, 443, $errno, $errstr, 30);
$keyarray = false;
if ( $fp ) {
fputs ($fp, $header . $req);
$res = '';
$headerdone = false;
while (!feof($fp)) {
$line = fgets ($fp, 1024);
if (strcmp($line, "\r\n") == 0) {
$headerdone = true;
}
else if ($headerdone) {
$res .= $line;
}
}
$lines = explode("\n", $res);
if (strcmp ($lines[0], "SUCCESS") == 0) {
//If successful we can now get the data returned in an associative array
$keyarray = array();
for ($i=1; $i<count($lines);$i++){
list($key,$val) = explode("=", $lines[$i]);
$keyarray[urldecode($key)] = urldecode($val);
}
}
}
fclose ($fp);
return $keyarray;