Versions Compared

Key

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

...

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)

Adds This method adds the address to the CCBCC's emails list.Method description


Parameter(s):

NameTypeMandatoryDefault Value
addressStringYN
displayNameString | NullN'NULL'


Return:

TypeDescription
VoidThis method does not return a value.


Example:

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



addAddressCc(address, displayName)

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


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


Parameter(s):

...