zend-mail
zend-mail copied to clipboard
Mail component from Zend Framework
Here's the code that explain this issue: ``` php $rawMessage = "Subject: =?UTF-8?Q?Non=20=E2=80=9Cascii=E2=80=9D=20characters=20like=20accented=20?=\r\n" ." =?UTF-8?Q?vowels=20=C3=B2=C3=A0=C3=B9=C3=A8=C3=A9=C3=AC?="; $mail = \Zend\Mail\Message::fromString($rawMessage); echo "Using Message::fromString() - ERROR (?): Subject is not mime encoded!\n"; echo...
Would be nice to have an "easy" way of accessing the _human-text-body_ part like it was possible with ZF1's `Zend_Mail` (using `getBodyText()`, `getBodyHtml()`). With current implementation of `Zend\Mail\Message`, theses _human_...
**Summary** On Windows with PHP 7, when sending an mail message with the Sendmail transport, the subject header is duplicated. **Steps to reproduce** To reproduce the bug the sample from...
I see error when mail have format with UTF8 Võ Ngọc, Minh Exception: exception 'Zend\Mail\Exception\InvalidArgumentException' with message 'The input is not a valid email address. Use the basic format local-part@hostname'...
The fix provided in PR #12 strips comments from within quoted strings. As per RFC5322#3.2.2 this should not happen: > Strings of characters enclosed in parentheses are considered comments >...
Hello, I maintain a fork that is used in a mail-related SaaS, and would like to merge those changes upstream for the community to benefit from. Would you prefer one...
The recipient listed in addCc() doesn't get the email, although the person who is in addTo() can get the email and can even see the addCc recipient's name is listed...
## Cloned this from zf2 issue repository for correct assignment to zend-mail: ## https://github.com/zendframework/zf2/issues/7654 Hi, since ZF v2.4.x, I cannot send any mails to recepients containing German umlauts in their...
Hello. There is a function **setHeaderEncoding** mentioned here http://framework.zend.com/manual/current/en/modules/zend.mail.encoding.html, but could not find in the current code. Message headers are always encoded to QuotedPrintable, could not find any way to...
I get the concept of removing the mentioned methods in ZF2 derives from the fact that a message may have several MIME parts, not only HTML and plain text. But...