PHPMailer\PHPMailer
PHPMailer::textLine() public WP 1.0
Return a formatted mail line.
{} Это метод класса: PHPMailer{}
Хуков нет.
Возвращает
Строку
. Null. Ничего.
Использование
$PHPMailer = new PHPMailer(); $PHPMailer->textLine( $value );
- $value(строка) (обязательный)
- -
Код PHPMailer::textLine() PHPMailer::textLine WP 5.7
public function textLine($value)
{
return $value . static::$LE;
}