Home > Contents > Index >
EMAIL.SETNAME
Sets the e-mail name.
Syntax
<EMAIL.SETNAME NAME="email_object_name
" VALUE="email_name
" />Parameters
NAME (required)
- Name of the e-mail object.
VALUE (required)
- Specified e-mail name.
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 name, and then gets the value for the e-mail name.
<!-- Create and Load e-mail object--> <EMAILMANAGER.CREATE OBJVARNAME="emailObj"/> <EMAILMANAGER.LOAD NAME="AssignmentDueReminder" OBJVARNAME="emailObj"/> <br/> <!-- Sets the value for e-mail name --> <EMAIL.SETNAME NAME="emailObj" VALUE="firstEmailName"/> <br/> <!-- Gets the value for e-mail name --> <EMAIL.GETNAME NAME="emailObj" VARNAME="emailNameOutput"/> <br/> Name is: <CSVAR NAME="Variables.emailNameOutput"/><br/><br/>
Home > Contents > Index > Oracle XML Tag Reference
Copyright (c) 2013, 2016, Oracle and/or its affiliates. All rights reserved.