Code Igniter -> attach email

后端 未结 5 911
逝去的感伤
逝去的感伤 2020-12-06 07:19

How do you use the email->attach function?

I can\'t figure what is happen, cos when i put the code for email->attach the mesage came in blank(the mail body) and ther

5条回答
  •  -上瘾入骨i
    2020-12-06 08:03

    This is Absolutely right code Please Try

    $config['upload_path'] = './uploads';
    $config['allowed_types'] = 'gif|jpg|jpeg|png|txt|php|pdf';
    $config['max_size']         = '9000';
    $config['encrypt_name']     = true;
    
    $image_data = $this->upload->data();
    $fname=$image_data[file_name];
    $fpath=$image_data[file_path].$fname;
    
    $this->email->attach($fpath);
    

提交回复
热议问题