New (Email constructor)
Create a new email object (Email class)
Syntax
%email = [%(Email):]New
Syntax terms
A declared Email object to contain the new Email object instance. | |
[%(Email)] | The optional class name in parentheses denotes a Constructor. See "Usage notes", below, for more information about invoking an Email Constructor. |
Usage notes
- As described in "Using New or other Constructors", New can be invoked with no object, with an explicit class name, or with an object variable in the class, even if that object is Null:
%email = new %email = %(Email):new %email = %email:new