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
If subject is NULL (mail have no subject) I got this exception
$this->headers must be an instance of Headers
Need to handle NULL subject without error/exception.
Originally posted by @r0073rr0r at zendframework/zend-mail#167
The text was updated successfully, but these errors were encountered:
Please provide code and/or unit test to reproduce the error. I tried the following test and it works:
public function testAllowMessageWithEmptySubject() { $message = new Message(); $message->addTo('[email protected]') ->setSender('[email protected]', 'Ralph Schindler') ->setBody('This is only a test.'); $this->transport->send($message); }
Originally posted by @samsonasik at zendframework/zend-mail#167 (comment)
Sorry, something went wrong.
I am closing it since there is no code/unit test to reproduce the issue.
No branches or pull requests
If subject is NULL (mail have no subject) I got this exception
Need to handle NULL subject without error/exception.
Originally posted by @r0073rr0r at zendframework/zend-mail#167
The text was updated successfully, but these errors were encountered: