Code Igniter -> attach email

后端 未结 5 922
逝去的感伤
逝去的感伤 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条回答
  •  南笙
    南笙 (楼主)
    2020-12-06 08:16

    step 1:You can not directly attach a file from the upload field of your form to an email. You can only attach files to your email from your server, so you need to upload the file from the form with CIs upload library:

    $this->upload->do_upload() to your server into some directory.

    step 2:

     $file=upload file;
    
    
     $file_path='uploaded directory on your server(eg:uploads/career)'.$file;
    

    step 3:just include

    $this->email->attach($file_path);
    $this->email->send();
    

提交回复
热议问题