You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Jan 30, 2020. It is now read-only.
I was not able to find an open or closed issue matching what I'm seeing.
This is not a question. (Questions should be asked on chat (Signup here) or our forums.)
I am attempting to read bounced emails and mark the address as bouncy.
Code to reproduce the issue
//connect to the mail server$mail = newImap([
'host' => 'REDACTED',
'port' => '993',
'user' => 'REDACTED',
'password' => 'REDACTED',
'ssl' => 'SSL'
]);
//open the bounced folder$folder = $mail->getFolders()->Bounced;
$mail->selectFolder($folder);
//will throw an Exception: The input is not a valid email address. Use the basic format local-part@hostname /vendor/zendframework/zend-mail/src/Address.php 77 if it encounters an email from "[email protected]" - it will wrongly interpret the email address as simply "MAILER-DAEMON"foreach ($mailas$messageNum => $message) {
}
Expected results
When trying to parse a fairly standard bounced email that comes from [email protected] it will throw an exception stating that MAILER-DAEMON is not a valid email address.
I suppose it should parse the email from address properly... or perhaps it should have an option to ignore these types of exceptions - since we are not constructing an email, and are simply parsing an email that exists on an actual email server it doesn't make much sense to throw an interrupting exception stating that the email is invalid, when it is in fact a real email that exists on a real mailserver. Since the exception is encountered during a foreach iteration it's not even an option to simply catch and ignore the exception.
Actual results
Exception: The input is not a valid email address. Use the basic format local-part@hostname /vendor/zendframework/zend-mail/src/Address.php 77
The text was updated successfully, but these errors were encountered:
I am attempting to read bounced emails and mark the address as bouncy.
Code to reproduce the issue
Expected results
When trying to parse a fairly standard bounced email that comes from [email protected] it will throw an exception stating that MAILER-DAEMON is not a valid email address.
I suppose it should parse the email from address properly... or perhaps it should have an option to ignore these types of exceptions - since we are not constructing an email, and are simply parsing an email that exists on an actual email server it doesn't make much sense to throw an interrupting exception stating that the email is invalid, when it is in fact a real email that exists on a real mailserver. Since the exception is encountered during a foreach iteration it's not even an option to simply catch and ignore the exception.
Actual results
Exception: The input is not a valid email address. Use the basic format local-part@hostname /vendor/zendframework/zend-mail/src/Address.php 77
The text was updated successfully, but these errors were encountered: