We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 81767ad commit 96c9b01Copy full SHA for 96c9b01
MailLibrary/Drivers/ImapDriver.php
@@ -265,7 +265,7 @@ public function getHeaders($mailId)
265
}
266
267
$headers[$key] = trim($text);
268
- } else if(in_array(strtolower($key), self::$contactHeaders)) {
+ } /*else if(in_array(strtolower($key), self::$contactHeaders)) {
269
$contacts = imap_rfc822_parse_adrlist(imap_utf8(trim($header)), 'UNKNOWN_HOST');
270
$list = new ContactList();
271
foreach($contacts as $contact) {
@@ -278,7 +278,7 @@ public function getHeaders($mailId)
278
279
$list->build();
280
$headers[$key] = $list;
281
- } else {
+ }*/ else {
282
$headers[$key] = trim(imap_utf8($header));
283
284
0 commit comments