I'm using codeigniter on Google App Engine and my web app receives emails and parses and stores certain values in the database. I'm using Mailgun for the same.
I'm able to receive all details like sender, subject, body but not able to retrieve the attachments.
I have shared my code below.
//Everything fine here
$email_subject = addslashes($this->input->post('subject', ''));
$email_body = addslashes($this->input->post('body-html', ''));
//Not able to retrieve attachments
for ($i=0; $i <= count($this->input->post('FILES')); $i++) {
$email_attach = $this->input->post('FILES')[$i];
}