Paypal交易后自动发送电子邮件

发布于 2024-12-04 18:35:15 字数 187 浏览 0 评论 0原文

我需要帮助为我的网站制作数字交付系统。

  • 买家点击 paypal 立即购买按钮
  • 买家完成 paypal 交易
  • 买家被重定向到我网站上的页面,并且我会向他们的 paypal 电子邮件地址发送一封电子邮件。

我应该如何去做这个任何信息都会非常有帮助。

谢谢

I need help on making a digital delivery system for my website.

  • Buyer clicks a paypal buy now button
  • Buyer completes paypal transaction
  • Buyer is redirected to a page on my website, and an email is sent to their paypal email address from me.

How should I go about doing this any info would be very helpful.

Thank you

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

丢了幸福的猪 2024-12-11 18:35:15

您正在寻找 PayPal 的即时付款通知

即时付款通知由三部分组成:

  1. 有人付钱给你。
  2. PayPal 将 FORM 变量 POST 到您指定的 URL
    运行一个程序来处理变量。
  3. 您验证
    通知。

以上内容引自PayPal的网站支付的HTML表单基础知识标准。显然,在第 3 步中您将向客户发送电子邮件。

要了解有关 IPN 的更多信息,请参阅 PayPal 的深入说明IPN 指南
要了解有关“立即购买”按钮的更多信息,请查看单件付款 - 立即购买按钮

You are looking for PayPal's Instant Payment Notification.

Instant Payment Notification consists of three parts:

  1. Someone pays you.
  2. PayPal POSTs FORM variables to a URL you specify
    that runs a program to process the variables.
  3. You validate the
    notification.

The above is quoted from PayPal's HTML Form Basics for Website Payments Standard. Obviously, step 3 is where you will send an email to your customer.

To learn more about IPN, here is an in-depth explanation of PayPal's IPN Guide.
To learn more about the Buy Now buttons, check out Single-Item Payments - Buy Now Buttons.

缪败 2024-12-11 18:35:15

提示:在 AppController.php 的 afterPaypalNotification 回调中使用它

function afterPaypalNotification($txnId)
{
ClassRegistry::init('PaypalIpn.InstantPaymentNotification')->email(array('id' => $txnId,
    'subject' => 'Thanks!',
    'message' => 'Thank you for the transaction!'
));  
}

Hint: use this in your afterPaypalNotification callback in your AppController.php

function afterPaypalNotification($txnId)
{
ClassRegistry::init('PaypalIpn.InstantPaymentNotification')->email(array('id' => $txnId,
    'subject' => 'Thanks!',
    'message' => 'Thank you for the transaction!'
));  
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文