public function testhandleUUEncodedEmailBody()
 {
     $inboundEmail = new InboundEmail();
     $raw = 'Message Body: This is a KnowledgeBase article that provides information on how to find email headers and use the data to trace a email.';
     $result = $inboundEmail->handleUUEncodedEmailBody($raw, 1);
     $this->assertEquals("\n" . $raw, $result);
 }