Zen Cart Logo
Forums / PayPal Website Payments Pro support / PayPal WPP and PayPal shipping

PayPal WPP and PayPal shipping

Locked

Views: 2,028

Results 1 to 2 of 2
This thread is locked. New replies are disabled.
18 Jul 2009, 12:08 PM
#1
techiant avatar

techiant

New Zenner

Join Date:
Oct 2008
Posts:
82
Plugin Contributions:
0

PayPal WPP and PayPal shipping

Hi folks,

We use PayPal shipping (PPS) with most of our orders.

For every order that is shipped through PPS a notification email is sent by PayPal to the customer. This feature, in our opinion, is confusing for the customers who did not pay through PayPal express checkout.

I spoke to PayPal merchant support and they tell me there is no way to turn it off. I mentioned one solution which was to have shopping cart pass our own email address during transaction and the PayPal rep said "that would be one way to do it".

Now, the question is which part of the WPP module is the one that is responsible for passing the email string? My thought is to send email string like: [email protected] so that the address is always unique as well as easy to recreate without storing. I looked at the PayPal php files and see that it also uses email to retrieve order info from PayPal at different times (such as when issuing refund), so this part of the code would need to be changed as well.

Does someone have good knowledge of this module who can help determine the parts of the code that needs to be modified for the made-up email address?

Thanks

18 Jul 2009, 3:01 PM
#2
drbyte avatar

drbyte

Sensei

Join Date:
Jan 2004
Posts:
63,513
Plugin Contributions:
176

Re: PayPal WPP and PayPal shipping

Techiant:

I spoke to PayPal merchant support and they tell me there is no way to turn it off. I mentioned one solution which was to have shopping cart pass our own email address during transaction and the PayPal rep said "that would be one way to do it".Doesn't sound like a definitive answer, but there's a noted lack of documentation on PPS so any workaround is all guesswork.

Techiant:

... which part of the WPP module is the one that is responsible for passing the email string? My thought is to send email string like: [email protected] so that the address is always unique as well as easy to recreate without storing.
/includes/modules/payment/paypaldp.php, line 505 says:'EMAIL' => $order->customer['email_address'],Changing that to the following will make it send the email address from your admin settings for the admin copy of order-confirmation emails: ```
'EMAIL' => SEND_EXTRA_ORDER_EMAILS_TO,


> **Techiant:**
>
> I looked at the PayPal php files and see that it also uses email to retrieve order info from PayPal at different times (such as when issuing refund), so this part of the code would need to be changed as well.I'm not sure what gave you that idea.