次のコードを使用してメールを送信しています。しかし、「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();