PHP 클래스 Redaxscript\Mailer

부터: 2.0.0
저자: Henry Ruhs
파일 보기 프로젝트 열기: redaxmedia/redaxscript 1 사용 예제들

보호된 프로퍼티들

프로퍼티 타입 설명
$_attachmentArray array array of attachments
$_body mixed body of the email
$_bodyString string built body contents
$_fromArray array array of sender
$_fromString string built recipient contents
$_headerString string built header contents
$_subject string subject of the email
$_subjectString string built subject contents
$_toArray array array of recipient

공개 메소드들

메소드 설명
init ( array $toArray = [], array $fromArray = [], string $subject = null, mixed $body = null, array $attachmentArray = [] ) init the class
send ( ) : boolean send the email

보호된 메소드들

메소드 설명
_createBodyString ( ) create the body contents
_createFromString ( ) create the recipient contents
_createHeaderString ( ) create the header contents
_createSubjectString ( ) create the subject contents

메소드 상세

_createBodyString() 보호된 메소드

create the body contents
부터: 2.0.0
protected _createBodyString ( )

_createFromString() 보호된 메소드

create the recipient contents
부터: 2.0.0
protected _createFromString ( )

_createHeaderString() 보호된 메소드

create the header contents
부터: 2.0.0
protected _createHeaderString ( )

_createSubjectString() 보호된 메소드

create the subject contents
부터: 2.0.0
protected _createSubjectString ( )

init() 공개 메소드

init the class
부터: 2.4.0
public init ( array $toArray = [], array $fromArray = [], string $subject = null, mixed $body = null, array $attachmentArray = [] )
$toArray array array of recipient
$fromArray array array of sender
$subject string subject of the email
$body mixed body of the email
$attachmentArray array array of attachments

send() 공개 메소드

send the email
부터: 2.6.2
public send ( ) : boolean
리턴 boolean

프로퍼티 상세

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

array of attachments
protected array $_attachmentArray
리턴 array

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

body of the email
protected mixed $_body
리턴 mixed

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

built body contents
protected string $_bodyString
리턴 string

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

array of sender
protected array $_fromArray
리턴 array

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

built recipient contents
protected string $_fromString
리턴 string

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

built header contents
protected string $_headerString
리턴 string

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

subject of the email
protected string $_subject
리턴 string

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

built subject contents
protected string $_subjectString
리턴 string

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

array of recipient
protected array $_toArray
리턴 array