Hi, I have a problem, I want to send an email from oracle apex (oracle 18c) using APEX_MAIL.SEND ()
I use code:
begin
apex_mail.send (p_to => 'test@gmail.com',
p_cc => 'test@gmail.com',
p_bcc => null,
p_from => 'fromtest@gmail.com',
p_subj => 'Test Mail 111 from ABS APEX',
p_body => 'Test Mail 111, Please delete / ignore.',
p_body_html => 'Test Mail 111 HTML, Please delete / ignore.'
);
apex_mail.push_queue (P_SMTP_HOSTNAME => '
servrer.test.com', P_SMTP_PORTNO => 25);
end;
Working with a database, and this database has ACL access (access control list);
In apex administrative services, the settings of the e-mail instance are configured, such as hostname, port, e-mail preparation enabled;
Error: "ora-29261 bad argument". Can anyone help with this ?? I want to solve the problem as soon as possible, ready to pay for help.