我正在使用以下代码发送电子邮件。但它在我的电子邮件中显示为来自“me@gmail.com”,当我按下回复它想要发送到“me@gmail.com”的电子邮件时也不知道我做错了什么?
$this->email->from($this->input->post('email'), $this->input->post('thename'));
$this->email->reply_to($this->input->post('email'), $this->input->post('thename'));
$this->email->to('me@gmail.com');
$this->email->subject('New Feedback');
$this->email->message($this->input->post('message'));
$this->email->send();