PHPMailer\PHPMailer

PHPMailer::textLine()publicWP 1.0

Return a formatted mail line.

Method of the class: PHPMailer{}

No Hooks.

Return

String.

Usage

$PHPMailer = new PHPMailer();
$PHPMailer->textLine( $value );
$value(string) (required)
-

PHPMailer::textLine() code WP 6.5.2

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