【发布时间】:2015-08-22 17:47:19
【问题描述】:
我在 Google App Engine 上使用 codeigniter,我的网络应用程序接收电子邮件并解析并将某些值存储在数据库中。我正在使用Mailgun。
我能够收到发件人、主题、正文等所有详细信息,但无法检索附件。
我在下面分享了我的代码。
//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];
}
【问题讨论】:
标签: php codeigniter mailgun