PHP 클래스 Pop\Mail\Message

저자: Nick Sagona, III ([email protected])
파일 보기 프로젝트 열기: nicksagona/PopPHP 1 사용 예제들

보호된 프로퍼티들

프로퍼티 타입 설명
$charset string Character set
$eol string EOL property
$html string HTML part of the message body
$mail Message Mail object
$message string Message body
$mimeBoundary string MIME boundary
$text string Text part of the message body

공개 메소드들

메소드 설명
__construct ( Mail $mail ) : Message Constructor
getBoundary ( ) : string Get MIME boundary
getCharset ( ) : string Get character set
getEol ( ) : string Get EOL
getHtml ( ) : string Get HTML part of the message.
getMessage ( ) : string Get the message.
getText ( ) : string Get text part of the message.
init ( ) : Message Initialize the email message.
setBoundary ( string $bnd = null ) : Message Set MIME boundary
setCharset ( string $chr ) : Message Set character set
setEol ( string $eol = Mail::CRLF ) : Mail Set EOL
setHtml ( string $html ) : Message Set HTML part of the message.
setText ( string $text ) : Message Set text part of the message.

보호된 메소드들

메소드 설명
getMessageType ( ) : string Get message type.

메소드 상세

__construct() 공개 메소드

Instantiate the message object.
public __construct ( Mail $mail ) : Message
$mail Mail
리턴 Message

getBoundary() 공개 메소드

Get MIME boundary
public getBoundary ( ) : string
리턴 string

getCharset() 공개 메소드

Get character set
public getCharset ( ) : string
리턴 string

getEol() 공개 메소드

Get EOL
public getEol ( ) : string
리턴 string

getHtml() 공개 메소드

Get HTML part of the message.
public getHtml ( ) : string
리턴 string

getMessage() 공개 메소드

Get the message.
public getMessage ( ) : string
리턴 string

getMessageType() 보호된 메소드

Get message type.
protected getMessageType ( ) : string
리턴 string

getText() 공개 메소드

Get text part of the message.
public getText ( ) : string
리턴 string

init() 공개 메소드

Initialize the email message.
public init ( ) : Message
리턴 Message

setBoundary() 공개 메소드

Set MIME boundary
public setBoundary ( string $bnd = null ) : Message
$bnd string
리턴 Message

setCharset() 공개 메소드

Set character set
public setCharset ( string $chr ) : Message
$chr string
리턴 Message

setEol() 공개 메소드

Set EOL
public setEol ( string $eol = Mail::CRLF ) : Mail
$eol string
리턴 Mail

setHtml() 공개 메소드

Set HTML part of the message.
public setHtml ( string $html ) : Message
$html string
리턴 Message

setText() 공개 메소드

Set text part of the message.
public setText ( string $text ) : Message
$text string
리턴 Message

프로퍼티 상세

$charset 보호되어 있는 프로퍼티

Character set
protected string $charset
리턴 string

$eol 보호되어 있는 프로퍼티

EOL property
protected string $eol
리턴 string

$html 보호되어 있는 프로퍼티

HTML part of the message body
protected string $html
리턴 string

$mail 보호되어 있는 프로퍼티

Mail object
protected Message,Pop\Mail $mail
리턴 Message

$message 보호되어 있는 프로퍼티

Message body
protected string $message
리턴 string

$mimeBoundary 보호되어 있는 프로퍼티

MIME boundary
protected string $mimeBoundary
리턴 string

$text 보호되어 있는 프로퍼티

Text part of the message body
protected string $text
리턴 string