mirror of
https://github.com/retailcrm/Fetch.git
synced 2025-04-04 22:03:36 +03:00
fixed usage not-exists property
This commit is contained in:
parent
766db0ad3a
commit
13c7fe2d7d
1 changed files with 1 additions and 1 deletions
|
@ -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…
Add table
Reference in a new issue