mirror of
https://github.com/retailcrm/Fetch.git
synced 2024-11-22 03:06:02 +03:00
Merge pull request #79 from vsychov/master
fixed usage not-exists property
This commit is contained in:
commit
b406e04899
@ -239,7 +239,7 @@ class Message
|
||||
if (isset($headers->bcc))
|
||||
$this->bcc = $this->processAddressObject($headers->bcc);
|
||||
|
||||
$this->from = $this->processAddressObject($headers->from);
|
||||
$this->from = isset($headers->from) ? $this->processAddressObject($headers->from) : array('');
|
||||
$this->replyTo = isset($headers->reply_to) ? $this->processAddressObject($headers->reply_to) : $this->from;
|
||||
|
||||
/* Finally load the structure itself */
|
||||
|
Loading…
Reference in New Issue
Block a user