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
**ErrorException: imap_fetchstructure(): No body information available in vendor/webklex/laravel-imap/src/IMAP/Message.php
OS: [e.g. Ubuntu 22.4]
PHP: [e.g. 8.2.7]
webklex/laravel-imap : "^1.4"
I have using the below code for connection : $oClient = new Client([ 'host' => $inboundEmailImap['host'], 'port' => $inboundEmailImap['port'], 'encryption' => 'ssl', 'validate_cert' => $validateCertificate, 'username' => $inboundEmailImap['username'], 'password' => $inboundEmailImap['password'], 'protocol' => $inboundEmailImap['protocol'], ]);
$oClient->connect();
I got the erorr on this function : $oFolder = $oClient->getFolder($mailboxFolder);**
The text was updated successfully, but these errors were encountered:
No branches or pull requests
**ErrorException: imap_fetchstructure(): No body information available in vendor/webklex/laravel-imap/src/IMAP/Message.php
OS: [e.g. Ubuntu 22.4]
PHP: [e.g. 8.2.7]
webklex/laravel-imap : "^1.4"
I have using the below code for connection :
$oClient = new Client([
'host' => $inboundEmailImap['host'],
'port' => $inboundEmailImap['port'],
'encryption' => 'ssl',
'validate_cert' => $validateCertificate,
'username' => $inboundEmailImap['username'],
'password' => $inboundEmailImap['password'],
'protocol' => $inboundEmailImap['protocol'],
]);
$oClient->connect();
I got the erorr on this function : $oFolder = $oClient->getFolder($mailboxFolder);**
The text was updated successfully, but these errors were encountered: