I'm having some problems getting a clean, unzipped report.csv file
from the zipped file AdWords emails (which is tab delimited, correct?)

Here's the email header before the attachment:

Content-Type: application/octet-stream; charset=UnicodeLittle
Content-Disposition: attachment; filename="report-csv.zip"
Content-Transfer-Encoding: base64

So the zipped data is binary with base64 encoding.  Not sure of the
charset=UnicodeLittle.  Anyway, here's a piece of PHP code I'm using
to get the attachment saved.  I'm checking the attachment contents
before base64 decoding...and it's coming up false (not base64
encoded).  This is assuming the preg_match function is correct.  Any
reasons why the attachment isn't encoded properly?

Please advise on something I'm missing....or maybe there's an easier
and better way to do this.

Thanks.
Chris


$filecontent = imap_fetchbody($mbox,$msgctr,$fpos);

if (preg_match('%^[a-zA-Z0-9/+]*={0,2}$%', $filecontent)) {
       echo "TRUE - base64 encoded";
     } else {
       echo "FALSE - base64 NOT encoded";
    }

$filecontent = getdecodevalue($filecontent, $part->type);

$filename = "attach_files/". $part->dparameters[0]->value;

$fp=fopen($filename , "w");
fwrite($fp,$filecontent,strlen($filecontent));
fclose($fp);

--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"AdWords API Forum" group.
To post to this group, send email to adwords-api@googlegroups.com
To unsubscribe from this group, send email to 
adwords-api+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/adwords-api?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to