Pop\Mail\Message::getText PHP 메소드

getText() 공개 메소드

Get text part of the message.
public getText ( ) : string
리턴 string
    public function getText()
    {
        return $this->text;
    }

Usage Example

예제 #1
0
파일: Mail.php 프로젝트: nicksagona/PopPHP
 /**
  * Get text part of the message.
  *
  * @return string
  */
 public function getText()
 {
     return $this->message->getText();
 }