Trying to execute the following code with Guzzle 5.
$client = new GuzzleClient([\'defaults/headers/User-Agent\' => static::$userAgentString]);
$request = $cl
This is not an issue with Guzzle, or MailGun, so much as it is with your particular implementation of the libraries. You are actually hitting the limits of the underlying operating system (libcurl, openssl, and fopen) by having so many long running (open) requests.
According to libcurl errors error 35 indicates that there was an error with the SSL/TLS handshake.
According to various google references error: 02001018 is an indication that openssl was unable to access (or rather read) the certificate file.
You are able to use ulimit to view and modify the limits various system-wide resources.
You are also able to use lsof to view the open files.
To resolve your issue: