/home/desid573/book.familycab.com.au/pdd/lib/Cake/Network/Email
Edit: /home/desid573/book.familycab.com.au/pdd/lib/Cake/Network/Email/AbstractTransport.php (1765B)
_config = $config + $this->_config;
}
return $this->_config;
}
/**
* Help to convert headers in string
*
* @param array $headers Headers in format key => value
* @param string $eol End of line string.
* @return string
*/
protected function _headersToString($headers, $eol = "\r\n") {
$out = '';
foreach ($headers as $key => $value) {
if ($value === false || $value === null || $value === '') {
continue;
}
$out .= $key . ': ' . $value . $eol;
}
if (!empty($out)) {
$out = substr($out, 0, -1 * strlen($eol));
}
return $out;
}
}