Skip to main content

Viewing APEX Mail Log & Queue

Run below query in SQL Workshop 

SELECT * FROM apex_mail_log ORDER BY last_updated_on DESC;

Above said query, used to find the apex mail log.

This query will find the mails in apex mail queue.

SELECT * FROM apex_mail_queue ORDER BY last_updated_on DESC;

We can push apex mail by apex_mail.push_queue

exec apex_mail.push_queue;

OR

BEGIN
  apex_mail.push_queue (p_smtp_hostname => 'IP_ADDRESS', 
                                         p_smtp_portno      => 'PORT_NUMBER'
                                        );
END;

Comments

  1. Very useful add more details.Thank you

    ReplyDelete
  2. Grasp evaluated Mobilunity as the Top B2B Administrations Organization during 2018-2021. The renowned stage additionally compensated us as one of the Top HR Administrations organizations in 2021. Mobilunity has effective contextual investigations across numerous businesses, and you can get direct references through a web structure. English OnTrack Retail, Japanese Pafin, German I-Doit, Israeli XPLG, and a lot more organizations work with us>> secure code review services

    ReplyDelete

Post a Comment