Oracle UTL_MAIL_INTERNAL
Version 11.2.0.3
 
General Information
Purpose Internal support package for UTL_MAIL
Source {ORACLE_HOME}/rdbms/admin/prvtmail.plb
Dependencies
UTL_MAIL V$PARAMETER
Required Object Privilege GRANT execute ON utl_mail TO <schema_name>;
GRANT execute ON utl_mail TO uwclass;
Security Model Owned by SYS with no privileges granted
 
GET_SMTP_SERVER
Returns the name of the configured SMTP server utl_mail_internal.get_smtp_server(smtp_server OUT VARCHAR2);
DECLARE
 sname VARCHAR2(30);
BEGIN
  utl_mail_internal.get_smtp_server(sname);
  dbms_output.put_line(sname);
END;
/
 
Related Topics
UTL_MAIL
UTL_SMTP
 
Morgan's Library Page Footer
This site is maintained by Dan Morgan. Last Updated: This site is protected by copyright and trademark laws under U.S. and International law. © 1998-2013 Daniel A. Morgan All Rights Reserved