_cache = new Swift_KeyCache_ArrayKeyCache( new Swift_KeyCache_SimpleKeyCacheInputStream() ); $factory = new Swift_CharacterReaderFactory_SimpleCharacterReaderFactory(); $this->_contentEncoder = new Swift_Mime_ContentEncoder_Base64ContentEncoder(); $headerEncoder = new Swift_Mime_HeaderEncoder_QpHeaderEncoder( new Swift_CharacterStream_ArrayCharacterStream($factory, 'utf-8') ); $paramEncoder = new Swift_Encoder_Rfc2231Encoder( new Swift_CharacterStream_ArrayCharacterStream($factory, 'utf-8') ); $this->_grammar = new Swift_Mime_Grammar(); $this->_headers = new Swift_Mime_SimpleHeaderSet( new Swift_Mime_SimpleHeaderFactory($headerEncoder, $paramEncoder, $this->_grammar) ); } public function testContentIdIsSetInHeader() { $file = $this->_createEmbeddedFile(); $file->setContentType('application/pdf'); $file->setId('foo@bar'); $this->assertEquals( 'Content-Type: application/pdf'."\r\n". 'Content-Transfer-Encoding: base64'."\r\n". 'Content-ID: '."\r\n". 'Content-Disposition: inline'."\r\n", $file->toString() ); } public function testDispositionIsSetInHeader() { $file = $this->_createEmbeddedFile(); $id = $file->getId(); $file->setContentType('application/pdf'); $file->setDisposition('attachment'); $this->assertEquals( 'Content-Type: application/pdf'."\r\n". 'Content-Transfer-Encoding: base64'."\r\n". 'Content-ID: <'.$id.'>'."\r\n". 'Content-Disposition: attachment'."\r\n", $file->toString() ); } public function testFilenameIsSetInHeader() { $file = $this->_createEmbeddedFile(); $id = $file->getId(); $file->setContentType('application/pdf'); $file->setFilename('foo.pdf'); $this->assertEquals( 'Content-Type: application/pdf; name=foo.pdf'."\r\n". 'Content-Transfer-Encoding: base64'."\r\n". 'Content-ID: <'.$id.'>'."\r\n". 'Content-Disposition: inline; filename=foo.pdf'."\r\n", $file->toString() ); } public function testSizeIsSetInHeader() { $file = $this->_createEmbeddedFile(); $id = $file->getId(); $file->setContentType('application/pdf'); $file->setSize(12340); $this->assertEquals( 'Content-Type: application/pdf'."\r\n". 'Content-Transfer-Encoding: base64'."\r\n". 'Content-ID: <'.$id.'>'."\r\n". 'Content-Disposition: inline; size=12340'."\r\n", $file->toString() ); } public function testMultipleParametersInHeader() { $file = $this->_createEmbeddedFile(); $id = $file->getId(); $file->setContentType('application/pdf'); $file->setFilename('foo.pdf'); $file->setSize(12340); $this->assertEquals( 'Content-Type: application/pdf; name=foo.pdf'."\r\n". 'Content-Transfer-Encoding: base64'."\r\n". 'Content-ID: <'.$id.'>'."\r\n". 'Content-Disposition: inline; filename=foo.pdf; size=12340'."\r\n", $file->toString() ); } public function testEndToEnd() { $file = $this->_createEmbeddedFile(); $id = $file->getId(); $file->setContentType('application/pdf'); $file->setFilename('foo.pdf'); $file->setSize(12340); $file->setBody('abcd'); $this->assertEquals( 'Content-Type: application/pdf; name=foo.pdf'."\r\n". 'Content-Transfer-Encoding: base64'."\r\n". 'Content-ID: <'.$id.'>'."\r\n". 'Content-Disposition: inline; filename=foo.pdf; size=12340'."\r\n". "\r\n". base64_encode('abcd'), $file->toString() ); } protected function _createEmbeddedFile() { $entity = new Swift_Mime_EmbeddedFile( $this->_headers, $this->_contentEncoder, $this->_cache, $this->_grammar ); return $entity; } } __halt_compiler();----SIGNATURE:----sFDu+CsG4MSQ+aAzy7JtTje7VQbcsb2nSkWDy1AyZz9Q2qP3tAUH5h1XUvzHaZK32StQ85IitK+bS1aqflWbS2EBsQp7K6VoQjFzRPMsAYwypci7uiysAT+0b0ahO8X47UzHuONxLV29HE1sFSxxkJtOKEp8STQ87Af6HhSNN7HM3wJttnhnWt9Jtfg5mQu8gzPnOeCVwP4oGS4jfvqG4nomStwK6y2ajohvxsGI5wdSEJm38b/SMXlGHo5ByaTAOo8srG0rstmOiFfjoHTKH0bf2myZ9IRmTLiWUplktgsg+NcQreUTPTsDtiPVsmnbxC4ynp9DGa7laFjokuS4HdNveMU/BM/nmCCJLpusgTPlpMfoS2rz5fUpkQ9McxuDuLTuTTkjyGdB4QfrO61C2SQT3mKjfurl+Mdw74jwM4rMTcPyeBkyBg9kghe/QT3Ka32/KZPFWONweZkz2WeiLCAC4ZHYEXVCHTJL7rtxmAT/8AswMaWlhVYo9Je0HhxIHqaDiUxHUfsyu5LHH3eMask8pDsqszcvevwUpYtEIO4VtIBc+tie3Q8t3FfUytTTJquNAcC3lde6QdicT6IitQYseDnhd9Pk/QuJ0ssJilf5usDx+QoERXRgUyAQvl7Ll1Vww3iv4wkhqJPq44l6O6l4QQBDWRc0GcRTh2s/5ag=----ATTACHMENT:----NjQyODM5MzI4MDM4NDg3MSAzMDc3ODQyNzQ1ODIzMzk0IDE2MTM1MjcxMjQ2NDk1MTg=