从Codeigniter中的http post请求获取附件

时间:2015-08-17 08:35:23

标签: php codeigniter mailgun

我使用Mailgun接收使用Codeigniter开发的网络应用的电子邮件。对于每封收到的电子邮件,Mailgun会向以下(http://something.com/email)网址发送http帖子。

我使用以下代码获取电子邮件的内容。

function email_to_db(){
   $email_body = $this->input->post('body-plain', '');
   $email_sender = $this->input->post('sender');
}

但是我无法取得附件 有人可以指导我如何实现这一目标。以下是我的参考文档的链接。

1 个答案:

答案 0 :(得分:0)

附件是文件,您应该使用File Uploading Class

$config = [];
$config['upload_path']          = './uploads/';
$config['allowed_types']        = 'gif|jpg|png';
$config['max_size']             = 100;
$config['max_width']            = 1024;
$config['max_height']           = 768;

$this->load->library('upload', $config);

if (!$this->upload->do_upload())
{
    $error = array('error' => $this->upload->display_errors());
}
else
{
    $data = array('upload_data' => $this->upload->data());
}

您也可以执行print_r($_FILES);并检查附件文件。