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
SimpleEmailService.php
line number 581
if($ses_response->error !== false) { if (($this->__trigger_errors && ($trigger_error !== false)) || $trigger_error === true) { $this->__triggerError('sendEmail', $ses_response->error); return false; } return $ses_response; }
if thisreturn false comes inside the condition it won't return the proper error response. it will return only false
return false
I tried a email id like someonegit.in instead of [email protected] it returns false and print the error warning instead of proper error response
The text was updated successfully, but these errors were encountered:
No branches or pull requests
SimpleEmailService.php
line number 581
if this
return false
comes inside the condition it won't return the proper error response. it will return only falseI tried a email id like someonegit.in instead of [email protected] it returns false and print the error warning instead of proper error response
The text was updated successfully, but these errors were encountered: