4

2 つのスクリプトがあり、それらを 1 行に結合したいと考えています。このコメントで行をマークしました:「ここで私はstack-overflow-helpが必要です」。

最初のスクリプト: これは Paypal の IPN レスポンダーです ( https://www.x.com/developers/PayPal/documentation-tools/code-sample/216623 ):

<?php 
// STEP 1: Read POST data
// reading posted data from directly from $_POST causes serialization 
// issues with array data in POST
// reading raw POST data from input stream instead.

$raw_post_data = file_get_contents('php://input');
$raw_post_array = explode('&', $raw_post_data);
$myPost = array();

foreach ($raw_post_array as $keyval) {
  $keyval = explode ('=', $keyval);
  if (count($keyval) == 2)
     $myPost[$keyval[0]] = urldecode($keyval[1]);
}
// read the post from PayPal system and add 'cmd'
$req = 'cmd=_notify-validate';
if(function_exists('get_magic_quotes_gpc')) {
   $get_magic_quotes_exists = true;
} 
foreach ($myPost as $key => $value) {        
   if($get_magic_quotes_exists == true && get_magic_quotes_gpc() == 1) { 
        $value = urlencode(stripslashes($value)); 
   } else {
        $value = urlencode($value);
   }
   $req .= "&$key=$value";
}

// STEP 2: Post IPN data back to paypal to validate

$ch = curl_init('https://www.paypal.com/cgi-bin/webscr');
curl_setopt($ch, CURLOPT_HTTP_VERSION, CURL_HTTP_VERSION_1_1);
curl_setopt($ch, CURLOPT_POST, 1);
curl_setopt($ch, CURLOPT_RETURNTRANSFER,1);
curl_setopt($ch, CURLOPT_POSTFIELDS, $req);
curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, 1);
curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, 2);
curl_setopt($ch, CURLOPT_FORBID_REUSE, 1);
curl_setopt($ch, CURLOPT_HTTPHEADER, array('Connection: Close'));

// In wamp like environments that do not come bundled with root authority certificates,
// please download 'cacert.pem' from "http://curl.haxx.se/docs/caextract.html" and set the directory path 
// of the certificate as shown below.
// curl_setopt($ch, CURLOPT_CAINFO, dirname(__FILE__) . '/cacert.pem');

if( !($res = curl_exec($ch)) ) {
    // error_log("Got " . curl_error($ch) . " when processing IPN data");
    curl_close($ch);
    exit;
}
curl_close($ch);


// STEP 3: Inspect IPN validation result and act accordingly

if (strcmp ($res, "VERIFIED") == 0) {
    // check whether the payment_status is Completed
    // check that txn_id has not been previously processed
    // check that receiver_email is your Primary PayPal email
    // check that payment_amount/payment_currency are correct
    // process payment
    // assign posted variables to local variables

    $item_name = $_POST['item_name'];
    $item_number = $_POST['item_number'];
    $payment_status = $_POST['payment_status'];
    $payment_amount = $_POST['mc_gross'];
    $payment_currency = $_POST['mc_currency'];
    $txn_id = $_POST['txn_id'];
    $receiver_email = $_POST['receiver_email'];
    $payer_email = $_POST['payer_email'];
} 
else if (strcmp ($res, "INVALID") == 0) {
    // log for manual investigation
}
?>

2 番目のスクリプト:

これは phpmailer_v5.1 use_gmail.php です。

<?php
// example on using PHPMailer with GMAIL

include("class.phpmailer.php");
include("class.smtp.php"); // note, this is optional - gets called from main class if not already loaded

$mail             = new PHPMailer();
$body             = 'this is the body of the email';

$mail->IsSMTP();
$mail->SMTPAuth   = true;                  // enable SMTP authentication
$mail->SMTPSecure = "ssl";                 // sets the prefix to the servier
$mail->Host       = "smtp.gmail.com";      // sets GMAIL as the SMTP server
$mail->Port       = 465;                   // set the SMTP port

$mail->Username   = "yourname@gmail.com";  // GMAIL username
$mail->Password   = "password";            // GMAIL password

$mail->From       = "replyto@yourdomain.com";
$mail->FromName   = "Webmaster";
$mail->Subject    = "This is the subject";
$mail->AltBody    = "This is the body when user views in plain text format"; //Text Body
$mail->WordWrap   = 50; // set word wrap

$mail->MsgHTML($body);
$mail->AddReplyTo("replyto@yourdomain.com","Webmaster");
$mail->AddAttachment("/path/to/file.zip");             // attachment
$mail->AddAttachment("/path/to/image.jpg", "new.jpg"); // attachment
$mail->AddAddress("username@domain.com","First Last"); //here I need stackoverflow-help
$mail->IsHTML(true); // send as HTML

if(!$mail->Send()) {
    echo "Mailer Error: " . $mail->ErrorInfo;
} else {
    echo "Message has been sent";
}
?>

同じフォルダーにclass.smtpありclass.phpmailer、use_gmail.php がテストされ、動作し、メールを送信しています。ただし、この行に宛先のメールアドレスを書き込んだ場合のみ:

$mail->AddAddress("username@domain.com","First Last");

決済したばかりのお客様にメールを送りたいのですが、Paypalから送信先のメールアドレスを取得するにはどうすればよいですか?

4

1 に答える 1

1

私たちの e コマース構成では、実際のユーザーの電子メール (たとえば、彼がクライアント データベースに登録するために使用したもの) が IPN レスポンダーによって送信されるようにするトリックを使用しました。

ユーザーが Paypal で支払うと、支払い金額、URL ブリッジなどに関する情報を含むフォームが Paypal システムに送信されます。次に例を示します。

<form name="autoPayFormSubmit" id="autoPayFormSubmit" method="post" action="https://securepayments.paypal.com/cgi-bin/acquiringweb"> 
    <input type="hidden" name="cmd" value="_hosted-payment" />
    <input type="hidden" name="subtotal" value="#SUBTOTAL#" />
    <input type="hidden" name="shipping" value="#SHIPCOST#" />
    <input type="hidden" name="business" value="#NUMBEROFBUSINESS#" />
    <input type="hidden" name="paymentaction" value="sale" />
    <input type="hidden" name="custom" value=" ## USE ME TO TRICK THE SYSTEM ##" />
    <input type="hidden" name="currency_code" value="EUR" />
    <input type="hidden" name="shopping_url" value="http://yourwebsite.domain/##" />
    <input type="hidden" name="cbt" value="Go back to the shopping" />
    <input type="hidden" name="notify_url" value="http://yourwebsite.domain/##" />
    <input type="hidden" name="cancel_return" value="http://yourwebsite.domain/##" />
    <input type="hidden" name="return" value="http://yourwebsite.domain/##" />
    <input type="submit" value="PAYPAL SAFE PAYMENT" onmouseover="this.style.backgroundColor='#CEE4F2';" onmouseout="this.style.backgroundColor='#EAF2F6';" style="font-weight: bold; font-size: 14px; padding: 10px 5px; border-radius: 10px; background: #EAF2F6 none no-repeat scroll 0 0; box-shadow: 3px 3px 5px #888; cursor:pointer;">
</form>

「トリック」は、「カスタム」入力を介して、システムに登録されているユーザーの電子メールを他の有用なデータとともに送信することです。たとえば、e コマースでは、ユーザーの電子メール、注文 ID、およびその他の「妥協しない」値を使用して配列をシリアル化します。シリアル化した後、独自に作成した crypt クラスでエンコードします (または、単純に PHP の mcrypt 拡張機能を使用できます)。

IPN 応答を取得すると、

$custom_encrypted_serialized_variables = $_POST['custom'];

したがって、ステップ 3 の IPN リスナー コードを次のように置き換えることができます。

...
...
// STEP 3: Inspect IPN validation result and act accordingly
if (strcmp ($res, "VERIFIED") == 0) {
    // check whether the payment_status is Completed
    // check that txn_id has not been previously processed
    // check that receiver_email is your Primary PayPal email
    // check that payment_amount/payment_currency are correct
    // process payment

    // assign posted variables to local variables
    $item_name = $_POST['item_name'];
    $item_number = $_POST['item_number'];
    $payment_status = $_POST['payment_status'];
    $payment_amount = $_POST['mc_gross'];
    $payment_currency = $_POST['mc_currency'];
    $txn_id = $_POST['txn_id'];
    $receiver_email = $_POST['receiver_email'];
    $payer_email = $_POST['payer_email'];
    $custom_encrypted_serialized_variables = $_POST['custom'];

    ...
    ...
}

次に、一般的な unserialize() および decrypt 関数を使用して、変数の復号化とシリアル化解除に進みます。

Paypalチェックアウトフォームの「カスタム」変数で送信できるその他の有用なデータとともに、クライアントの電子メールを送信すれば完了です!

PS: この解決策が最適ではないことはわかっています。別の解決策があるかもしれませんが、これは迅速かつ効率的であることがわかりました。ヒントと修正は大歓迎です!

于 2012-12-20T09:17:52.000 に答える