Posts

Email Configuration in Oracle Apex

Image
 1) In Apex go to apex_admin--> Manage Instance --> Instance Settings --> Email  SMTP Host Address: localhost SMTP Host Port: 25 ========= ========= ========= ========= ========= 2) Email Configuration  ========= ========= ========= ========= ========= Smtp Server Configuration In Window Server  https://www.vionblog.com/windows-smtp-server-relay-gmail/ ========= ========= ========= ========= ========= 3) Oracle SQL ========= ========= ========= ========= conn sys/password as sysdba @$ORACLE_HOME/rdbms/admin/utlmail.sql @$ORACLE_HOME/rdbms/admin/prvtmail.plb @$ORACLE_HOME/rdbms/admin/utlsmtp.sql grant execute on utl_mail TO public; grant execute on utl_smtp to public; alter system set smtp_out_server='localhost' or 'ipaddress' select * from V$PARAMETER where name=‘smtp_out_server' alter system set job_queue_processes = 10;   ========= ========= ========= ========= 4)ACL Acess ...