This function returns the email address associated with the named user.
Syntax
APEX_UTIL.GET_EMAIL( p_username IN VARCHAR2); RETURN VARCHAR2;
Parameters
Table 28-38 GET_EMAIL Parameters
| Parameter | Description | 
|---|---|
| 
 | The user name in the account. | 
Example
The following example shows how to use the GET_EMAIL function to return the email address of the user 'FRANK'.
DECLARE
    VAL VARCHAR2(240);
BEGIN
    VAL := APEX_UTIL.GET_EMAIL(p_username => 'FRANK');
END;
See Also: