voyager431966
asked on
I need a Linux script to read multiple emails and down load attachment automatically
I need a Linux script to read multiple emails and down load attachment automatically
ASKER CERTIFIED SOLUTION
membership
Create a free account to see this answer
Signing up is free and takes 30 seconds. No credit card required.
Have recently added to this code (in the text section)
//find character set encoding
if (count($p->dparameters)>0){
foreach ($p->dparameters as $dparam){
if (strtoupper($dparam->attribute)=='CHARSET')) $charset=$dparam->value;
}
}
if ($charset) {
if ($charset<>"UTF-8") $part = iconv($charset,"UTF-8",$part);
}
ASKER
Hi Bevhost,
Thank you for your swift answer. We will work on it and get back to you with the result.
Regards,
Voyager431966