Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

addAddress(address, displayName)

This method adds the address to the email list.

Parameter(s):

NameTypeMandatoryDefault Value
addressStringYN
displayNameString | NullN'NULL'


Return:

TypeDescription
VoidThis method does not return a value.


Example:

Code Block
languagejs
themeEclipse
titleaddAddress
(function runNotificationScript(
    /* SimpleRecord */ current, 
    /* SimpleTemplatePrinter */ template,
    /* SimpleEmailOutbound */ email,
    /* SimpleRecord */ event
    ) {
email.addAddress(“test@example.com”, “example”);
})(current, template, email, event);


addAddressBcc(address, displayName)

This method adds the address to the BCC's emails list.


Parameter(s):

NameTypeMandatoryDefault Value
addressStringYN
displayNameString | NullN'NULL'


Return:

TypeDescription
VoidThis method does not return a value.


Example:

Code Block
languagejs
themeEclipse
titleaddAddressBcc
(function runNotificationScript(
    /* SimpleRecord */ current, 
    /* SimpleTemplatePrinter */ template,
    /* SimpleEmailOutbound */ email,
    /* SimpleRecord */ event
    ) {
email. addAddressBcc(“test@example.com”, “copy2 example”);
})(current, template, email, event);


addAddressCc(address, displayName)

This method adds the address to the CC's emails list.


Parameter(s):

NameTypeMandatoryDefault Value
addressStringYN
displayNameString | NullN'NULL'


Return:

TypeDescription
VoidThis method does not return a value.


Example:

Code Block
languagejs
themeEclipse
titleaddAddressCc
(function runNotificationScript(
    /* SimpleRecord */ current, 
    /* SimpleTemplatePrinter */ template,
    /* SimpleEmailOutbound */ email,
    /* SimpleRecord */ event
    ) {
email. addAddressCc(“test@example.com”, “copy example”);
})(current, template, email, event);

Method description

...

...

...

Method description

Parameter(s):

...

This method gets the recipients' addresses.


Return:

TypeDescription
StringThe string containing the recipient's addresses.


Example:

Code Block

...

languagejs
themeEclipse
titlegetAddresses
(function runNotificationScript(
    /* SimpleRecord */ current, 
    /* SimpleTemplatePrinter */ template,
    /* SimpleEmailOutbound */ email,
    /* SimpleRecord */ event
    ) {
email.getAddresses();
})(current, template, email, event);


getAddressesBcc()

This method gets the recipients' BCC addresses.


Return:

TypeDescription
StringThe string containing the recipient's BCC addresses.


Example:

Code Block

Method description

Parameter(s):

...

languagejs
themeEclipse
titlegetAddressesBcc
(function runNotificationScript(
    /* SimpleRecord */ current, 
    /* SimpleTemplatePrinter */ template,
    /* SimpleEmailOutbound */ email,
    /* SimpleRecord */ event
    ) {
email.getAddressesBcc();
})(current, template, email, event);


getAddressesCc()

This method gets the recipients' CC addresses.


Return:

TypeDescription
StringThe string containing the recipient's CC addresses.


Example:

Code Block
languagejs
themeEclipse
titlegetAddressesCc
(function runNotificationScript(
    /* SimpleRecord */ current, 
    /* SimpleTemplatePrinter */ template,
    /* SimpleEmailOutbound */ email,
    /* SimpleRecord */ event
    ) {
email.getAddressesCc();
})(current, template, email, event);



Method description


Parameter(s):

NameTypeMandatoryDefault Value





Return:

TypeDescription



Example:

Code Block



Method description


Parameter(s):

NameTypeMandatoryDefault Value





Return:

TypeDescription



Example:

Code Block



Method description


Parameter(s):

NameTypeMandatoryDefault Value





Return:

TypeDescription



Example:

Code Block



Method description


Parameter(s):

NameTypeMandatoryDefault Value





Return:

TypeDescription



Example:

Code Block



Method description


Parameter(s):

NameTypeMandatoryDefault Value





Return:

TypeDescription



Example:

Code Block



Method description


Parameter(s):

NameTypeMandatoryDefault Value





Return:

TypeDescription



Example:

Code Block



Method description


Parameter(s):

NameTypeMandatoryDefault Value





Return:

TypeDescription



Example:

Code Block



Method description


Parameter(s):

NameTypeMandatoryDefault Value





Return:

TypeDescription



Example:

Code Block



Method description


Parameter(s):

NameTypeMandatoryDefault Value





Return:

TypeDescription



Example:

Code Block




Table of Contents
absoluteUrltrue
classfixedPosition