In file InboundMail.php it's better to use strtolower($param->attribute) == 'charset', cause i found out that some clients send word CHARSET in header and your function cant recognize message charset.
Code:
if($tempObj->ifparameters) {
foreach($tempObj->parameters as $param) {
if(strtolower($param->attribute) == 'charset') {
return $param->value;
}
}
}


LinkBack URL
About LinkBacks




Reply With Quote


Bookmarks