UTL_MAIL to Send Email form PL/SQL

Let us see how we can utilize UTL_MAIL to send Email form PL/SQL. Using the UTL_MAIL package is pretty straight forward. Check the below example. [sql] begin utl_mail.send( sender => ‘oracle@mydomain.com’, recipients => ‘user1@mydomain.com,user2@mydomain.com’, subject => ‘Test Mail from my Instance’, message => ‘Test message’ ); end; [/sql] As you can see there are 4 […]