Code Igniter -> attach email

后端 未结 5 912
逝去的感伤
逝去的感伤 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:21

    $this->email->attach()

    Enables you to send an attachment. Put the file path/name in the first parameter. Note: Use a file path, not a URL. For multiple attachments use the function multiple times. For example:

    $this->email->attach('/path/to/photo1.jpg');
    $this->email->attach('/path/to/photo2.jpg');
    $this->email->attach('/path/to/photo3.jpg');
    
    $this->email->send();
    

    Codeigniter Email Class

提交回复
热议问题