Codeigniter send email with attach file

前端 未结 8 1551
走了就别回头了
走了就别回头了 2020-11-30 05:15

I am trying to send email on codeigniter with attach file.

I always receive email successfully. However , I never receive with attach file. Below is code and highly

8条回答
  •  孤城傲影
    2020-11-30 05:45

    i have this problem before , the problem with the path file , so i change the path file to


    $attched_file= $_SERVER["DOCUMENT_ROOT"]."/uploads/".$file_name; $this->email->attach($attched_file);


    And it works fine with me

提交回复
热议问题