EmailMessage
in package
メール本文。
Table of Contents
Properties
Methods
- __construct() : mixed
- 生成。
- clearHtml() : void
- HTMLを破棄。
- clearText() : void
- プレーンテキストを破棄。
- getHtml() : string
- HTML取得。
- getText() : string
- プレーンテキスト取得。
- hasHtml() : bool
- HTMLが有効か。
- hasText() : bool
- プレーンテキストが有効か。
- setHtml() : void
- HTMLを設定。
- setText() : void
- プレーンテキストを設定。
Properties
$html
private
string|null
$html
= null
$text
private
string|null
$text
= null
Methods
__construct()
生成。
public
__construct([string|null $text = null ][, string|null $html = null ]) : mixed
Parameters
- $text : string|null = null
-
プレーンテキスト。
- $html : string|null = null
-
HTML。
clearHtml()
HTMLを破棄。
public
clearHtml() : void
clearText()
プレーンテキストを破棄。
public
clearText() : void
getHtml()
HTML取得。
public
getHtml() : string
Tags
Return values
stringgetText()
プレーンテキスト取得。
public
getText() : string
Tags
Return values
stringhasHtml()
HTMLが有効か。
public
hasHtml() : bool
Tags
Return values
boolhasText()
プレーンテキストが有効か。
public
hasText() : bool
Tags
Return values
boolsetHtml()
HTMLを設定。
public
setHtml(non-empty-string $value) : void
Parameters
- $value : non-empty-string
setText()
プレーンテキストを設定。
public
setText(non-empty-string $value) : void
Parameters
- $value : non-empty-string