samg
samg

Reputation: 333

Verifying email sent via Oracle

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

Answers (1)

Jeffrey Kemp
Jeffrey Kemp

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 yourself
  • APEX_MAIL - this package logs emails in APEX_MAIL_LOG

Upvotes: 1

Related Questions