Reputation: 333
Is there a query that I can use to show all emails I have sent via Oracle using the built-in procedure?
I want to see how many emails have been successfully sent and how many were not sent.
Upvotes: 1
Views: 511
Reputation: 60312
The answer depends on which procedure you use.
UTL_MAIL
, UTL_SMTP
or UTL_TCP
- these packages don't do any logging, you need to log emails yourselfAPEX_MAIL
- this package logs emails in APEX_MAIL_LOG
Upvotes: 1