Skip to Main Content

APEX

Announcement

For appeals, questions and feedback about Oracle Forums, please email oracle-forums-moderators_us@oracle.com. Technical questions should be asked in the appropriate category. Thank you!

Sending Emails from localhost

Hello,

I am running oracle database 23ai and AEPX 24.1 in a docker container locally. I would like to send emails from the application i am running locally(http://localhost:8181/ords/). In OCI -> Developer Servics -> Email Delivery -> Configuration -> SMTP Sending Info => Security label tooltip says “Email Delivery requires a secure TLS connection (v1.2) to submit email to the public endpoint.” I wonder if there is a mismatch between the 23ai default tls version(1.3) and OCIS’s expected 1.2 version. Do you know if it is possible to do what i am trying to do? Sending emails from a local application with OCI’s smtp credentials.

I think I configured everything correctly in my apex instance settings. When I run this

BEGIN
APEX_INSTANCE_ADMIN.VALIDATE_EMAIL_CONFIG;
END;

I get the following error.

ORA-29019: The protocol version is incorrect.
ORA-06512: at “SYS.UTL_TCP”, line 63
ORA-06512: at “SYS.UTL_TCP”, line 331
ORA-06512: at “SYS.UTL_SMTP”, line 199
ORA-06512: at “SYS.UTL_SMTP”, line 223
ORA-06512: at “APEX_240100.WWV_FLOW_MAIL”, line 1302
ORA-06512: at “APEX_240100.WWV_FLOW_MAIL”, line 2774
ORA-06512: at “APEX_240100.WWV_FLOW_INSTANCE_ADMIN”, line 2151
ORA-06512: at line 2

Update:

I am also getting the same error on 19.22.0.0.0

Comments
Post Details
Added on Sep 4 2024
0 comments
338 views