Addr822Phrase (NotesName - JavaScript)

Read-only. Phrase component of Internet address in the format based on RFC 822 Address Format Syntax.

Defined in

NotesName

Syntax

getAddr822Phrase() : string

Usage

The Phrase component is the part of the address in quotation marks.

This property returns an empty string if the name is not an Internet address that contains a Phrase component.

Examples

This computed field returns "John B Goode".
var nam:NotesName = session.createName(
	"\"John B Goode\" <jbgoode@us.acme.com> (Guitars) (Music) (East)");
return nam.getAddr822Phrase();