예제 #1
0
파일: part.php 프로젝트: Kervinou/OBM
 public function get_content()
 {
     return SMime::encode($this->content, $this->get_encoding(), $this->line_length, $this->eol);
 }
예제 #2
0
파일: MimeTest.php 프로젝트: Kervinou/OBM
 public function test_not_supported_encoding_should_throw()
 {
     $this->setExpectedException('SMimeException');
     SMime::encode('test', 'dummy');
 }