zend-mail
zend-mail copied to clipboard
Mail component from Zend Framework
Problem: 1. [GenericHeader](https://github.com/zendframework/zend-mail/blob/release-2.7.3/src/Header/GenericHeader.php#L33-L40) loads the header in file, decodes it to utf-8 2. the [Headers::get](https://github.com/zendframework/zend-mail/blob/release-2.7.3/src/Headers.php#L318) attempts to Lazy-Load "To" header class Lazyload [does stringify and load in from string](https://github.com/zendframework/zend-mail/blob/release-2.7.3/src/Headers.php#L496-L497) ```php...
this shows the problem zend-mail is having: mail created with `Mail\Message` and serialized into raw and then loaded with `Storage\Message` causes parse error if the `$text` contains double unix newlines...
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.
Hi, First: sorry if my english is not perfect :-) In my company, a project (currently in development) is using Zend\Mail with SMTP protocol to send email When a mail...
I have seen that this package requires `zendframework/zend-loader`, just for one class, the `Zend\Mail\Header\HeaderLoader`. However, this class basically defines a map to resolve header names to class names. Would you...
This removes the dependency on the zendframework/zend-load package, as suggested in #185 The `HeaderLoader` class has been removed and replaced by a simple class map in the `Headers` class. However,...
When a response contains a literal php ends in an endless loop. See RFC about literals: https://tools.ietf.org/html/rfc3501#section-4.3 Below a snippet of the response of imap command `A1 LIST "" *`...
PHP 7.2.2, Zend Mail at it's latest version as of today. I'm opening an old mailbox file generated by Mozilla Thunderbird (please note that I get the same issue with...
``` X-Face: -wlbD9'=rreR]%7k=U/$9SH49NUKg%87&q@LL/f-N8J5fAS$(eMSkqGYAX{V?:}ZP7&|@~ lR"jz-sU-yjj4Om?"#^&RQ/D1X}NaJG''pmX\qOjp;Mejrcq?~.iVv*)nD(-c4kSQvL.N= q_9[7vt;C$!vga6l_O1d52OWygzjb-XrS]- ``` yields: ``` Line "X-Face: -wlbD9'=rreR]%7k=U/$9SH49NUKg%87&q@LL/f-N8J5fAS$(eMSkqGYAX{V?:}ZP7&|@~ lR"jz-sU-yjj4Om?"#^&RQ/D1X}NaJG''pmX\qOjp;Mejrcq?~.iVv*)nD(-c4kSQvL.N= q_9[7vt;C$!vga6l_O1d52OWygzjb-XrS]-"does not match header format! ``` This can be tested with [online](http://www.dairiki.org/xface/xface.php) tool  