【发布时间】:2019-11-20 22:46:29
【问题描述】:
我正在尝试发送带有保存在服务器文件夹中的附件的电子邮件,电子邮件发送成功,但在发送的电子邮件中看不到文件
如何获取保存在服务器中的文件路径?
$this->load->library('email');
$this->load->helper('file');
$this->email->set_mailtype("html");
$this->email->from($fromEmail, $fromEmailName);
$this->email->to($toEmail);
$this->email->subject($emailSubject);
$message = '<p> confirm </p> <img src="cid:logo" width="80" height="80" />'; // here src id
$file_name = "file.jpeg";
$file_url= base_url()."/uploads/".$file_name;
$this->email->attach($file_url , 'logo' , 'inline' ); // here when add the src id not work
【问题讨论】:
标签: codeigniter