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
Zend\Mail\Message
Zend\Mime\Message
https://github.com/jchook/mime-php
So potentially here: https://github.com/TheFox/smtpd/blob/master/src/Client.php#L473
Instead of $mail = \Zend\Mail\Message::fromString($this->mail); or $mail = \Zend\Mime\Message::createFromMessage($this->mail);, it could be:
$mail = \Zend\Mail\Message::fromString($this->mail);
$mail = \Zend\Mime\Message::createFromMessage($this->mail);
$mail = (new \Virtu\Mime\Textual\Parser)->parseMessageString($this->mail);
This would then expose each message part after parsing
The text was updated successfully, but these errors were encountered:
I gave this a try and it works -- also decodes base64-encoded message parts :)
Sorry, something went wrong.
No branches or pull requests
https://github.com/jchook/mime-php
So potentially here: https://github.com/TheFox/smtpd/blob/master/src/Client.php#L473
Instead of
$mail = \Zend\Mail\Message::fromString($this->mail);
or$mail = \Zend\Mime\Message::createFromMessage($this->mail);
, it could be:$mail = (new \Virtu\Mime\Textual\Parser)->parseMessageString($this->mail);
This would then expose each message part after parsing
The text was updated successfully, but these errors were encountered: