public function get_email($id)
 {
     $xml = $this->make_request('emails/' . $id);
     $this->check_for_errors('Email');
     $xml_object = simplexml_load_string($xml);
     $email = new HighriseEmail($this);
     $email->load_from_xml_object($xml_object);
     return $email;
 }