Hi,
I am trying to send a calendar invite from my APEX workspace to outlook calendar.
Does apex has an easy way of doing this?
From the past threads, It looks like we should use utl_smtp to achieve this.
But it errors out as ORA-24247: network access denied by access control list (ACL)
DECLARE
l_connection utl_smtp.connection;
l_mail_serv varchar2(50) DEFAULT 'stbeehive.oracle.com';
l_mail_port pls_integer DEFAULT '25';
BEGIN
l_connection := utl_smtp.open_connection ( l_mail_serv, l_mail_port );
utl_smtp.helo ( l_connection, l_mail_serv );
htp.p ( 'Success' );
END;
Has anyone tried to use utl_smtp in apex.oraclecorp.com...?
Thanks in advance for your help.
Regards,
Aneesh N