Open
Description
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 (\n\n
).
$text = "Hello, bödi tekst\n\nBye";
$part = new Mime\Part($text);
$part->type = 'text/plain';
$part->charset = 'UTF-8';
$mime = new Mime\Message();
$mime->addPart($part);
$message = new Mail\Message();
$message->setEncoding('UTF-8');
$message->setBody($text);
$raw = $message->toString();
$message = new Storage\Message(['raw' => $raw]);
this throws on $message = new Storage\Message(['raw' => $raw]);
`
Originally posted by @glensc at zendframework/zend-mail#159