$this->load->library('Amazon_ses');
$this->amazon_ses->subject($data['title']);
$this->amazon_ses->from($data['sender'], $data['sender_name']);
$this->amazon_ses->to($data['reciever']);
$this->amazon_ses->message($data['body']);
$this->amazon_ses->debug(TRUE);
var_dump( $this->amazon_ses->send(TRUE, $data['reply']) ); die('ses test');