Home > Contents > Index >
EMAIL.SETDESCRIPTION
Sets the e-mail description for the e-mail object.
Syntax
<EMAIL.SETDESCRIPTION NAME="email_object_name
" VALUE="description text
" />Parameters
NAME (required)
- Name of the e-mail object.
VALUE (required)
- Description text.
Error Numbers
The possible values of
errno
include:
Value Description -105 Email object has a name conflict.The following code creates and loads an e-mail object, sets the value for e-mail description, and then gets the value for the e-mail description.
<!-- Create and Load e-mail object--> <EMAILMANAGER.CREATE OBJVARNAME="emailObj"/> <EMAILMANAGER.LOAD NAME="AssignmentDueReminder" OBJVARNAME="emailObj"/> <br/> <!-- Sets the value for e-mail description --> <EMAIL.SETDESCRIPTION NAME="emailObj" VALUE="This is my mail description"/> <br/> <!-- Gets the value for e-mail description --> <EMAIL.GETDESCRIPTION NAME="emailObj" VARNAME="emailDescOutput"/> <br/> Description is: <CSVAR NAME="Variables.emailDescOutput"/>
Home > Contents > Index > ![]()
Oracle XML Tag Reference
Copyright (c) 2013, 2019, Oracle and/or its affiliates. All rights reserved.