PHPMailer\PHPMailer

PHPMailer::textLine()publicWP 1.0

Return a formatted mail line.

Метод класса: PHPMailer{}

Хуков нет.

Возвращает

Строку.

Использование

$PHPMailer = new PHPMailer();
$PHPMailer->textLine( $value );
$value(строка) (обязательный)
-

Код PHPMailer::textLine() WP 6.5.2

public function textLine($value)
{
    return $value . static::$LE;
}