Esempio n. 1
0
 /**
  * Get the encoding format used in this document
  * @return string
  */
 public function getEncoding()
 {
     try {
         return $this->headers->get("Content-Transfer-Encoding");
     } catch (Swift_Message_MimeException $e) {
         return false;
     }
 }
Esempio n. 2
0
 /**
  * Get the encoding format used in this document
  * @return string
  */
 function getEncoding()
 {
     return $this->headers->get("Content-Transfer-Encoding");
 }