Is it possible to set a shipping address if a paypal donation is used via API?The address needs to be given to PayPal, but I haven't found a solution yet.
$param = '';$param .= '&business=XXXX';$param .= '&lc=DE';$param .= '&item_name=My Company';$param .= '&item_number=' . $spendenConfig['itemnumber'];$param .= '&amount=' . $spendenConfig['amount'];$param .= '¤cy_code=EUR';$param .= '&no_note=1&no_shipping=1&rm=1';$param .= '&return=' . $paypalReturnUrl;$param .= '&cancel_return=' . $this->PAYPAL_CANCEL_URL;$param .= '&bn=PP-DonationsBF:btn_donateCC_LG.gif:NonHosted&status=success';header('Location: https://www.paypal.com/cgi-bin/webscr?cmd=_donations' . $param);
Maybe it is not possible because a donation does not need a "shipping address", but I need that for a donation receipt.