コード例 #1
0
ファイル: ImapTest.php プロジェクト: jorgenils/zend-framework
 public function testFetchMessageBody()
 {
     $mail = new Zend_Mail_Imap($this->_params);
     $content = $mail->getMessage(3)->getContent();
     list($content, ) = explode("\n", $content, 2);
     $this->assertEquals('Fair river! in thy bright, clear flow', trim($content));
 }