Addr822LocalPart (NotesName - JavaScript™)
Read-only. LocalPart
component of Internet
address in the format based on RFC 822 Address Format Syntax.
Defined in
NotesNameSyntax
getAddr822LocalPart() : string
Usage
TheLocalPart
component
is the part of the address that precedes the at sign.This property
returns an empty string if the name is not an Internet address that
contains a LocalPart
component.
Examples
This computed field returnsjbgoode
.var nam:NotesName = session.createName(
"\"John B Goode\" <jbgoode@us.acme.com> (Guitars) (Music) (East)");
return nam.getAddr822LocalPart();