We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Parameter customer_email is mandatory and needs to be added to Paymill\Models\Request\SofortChecksum
The text was updated successfully, but these errors were encountered:
Unfortunately I need to confirm this bug. I have the same Problem, Sofortüberweisung does not seem to work at the moment.
I had some temporary success by adding a hack:
$parameter['customer_email'] = $parameter['client_email'] ?? null;
to: vendor/paymill/paymill/lib/Paymill/Request.php#237
but it is not working persistently.
Sorry, something went wrong.
I also ran into this issue, my "fix" is to add this subclass in my code:
class MySofortChecksum extends \Paymill\Models\Request\SofortChecksum { public function parameterize($method) { $parameterArray = parent::parameterize($method); if('create' == $method) { if ($this->getClientEmail()) { $parameterArray['customer_email'] = $this->getClientEmail(); } } return $parameterArray; } }
No branches or pull requests
Parameter customer_email is mandatory and needs to be added to Paymill\Models\Request\SofortChecksum
The text was updated successfully, but these errors were encountered: