예제 #1
0
파일: Mail.php 프로젝트: rendix2/QW_MVS
 public function setTextFromFile($filePath)
 {
     try {
         $file = new File($filePath, FALSE);
     } catch (IllegalArgumentException $e) {
         throw new MailException($e->getMessage());
     }
     $this->text = $this->mimeHeaderEncode($file->getContent());
 }
예제 #2
0
파일: Folder.php 프로젝트: rendix2/QW_MVS
 public function __destruct()
 {
     parent::__destruct();
 }