PHPMailer\PHPMailer

PHPMailer::textLinepublicWP 1.0

Return a formatted mail line.

Method of the class: PHPMailer{}

No Hooks.

Returns

String.

Usage

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

PHPMailer::textLine() code WP 6.9.1

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