-
Notifications
You must be signed in to change notification settings - Fork 111
message cloning and headers #214
Comments
ps. I'm on php72 and am using 2.10.0 of zend-mail (2.9 also had this) |
i've added in my project wrapper which implements __clone: https://github.com/eventum/eventum/blob/v3.5.1/src/Mail/MailMessage.php#L651-L659 however it still doesn't work, so more deeper probably need deeper clone in however, doing it properly would mean add |
I am under the impression that if you do not specify a __clone method a deep clone was performed by default? |
rather opposite: http://php.net/manual/en/language.oop5.cloning.php
and as objects are always references in php5+, the result is that cloned subobjects remain shared. |
This repository has been closed and moved to laminas/laminas-mail; a new issue has been opened at laminas/laminas-mail#28. |
I have a service that has an injected default message. It has some default fields, such as encoding, from_name, from which are equal for any mail sent.
Internally it will create a clone from the default message and then it will add the actual rendered content, to subject. etc. It also adds Content-Type and an X-Header.
However at some point I noticed messages were having duplicate Content-Type and X-Header headers and some servers will deny those messages. Every time a message is sent and additional header is added. (this is a long running process)
Code to reproduce the issue
Expected results
Headers should be unique due to the clone of the default message
Actual results
I'm aware normally one should create a new Message for each Message you attempt to sent. I have changed my code to do this, but I still think this should simply work. I'm wondering why clone doesn't really clone...
The text was updated successfully, but these errors were encountered: