How to send email from oracle stored procedure

Friday, 8 June 2007, 1:40 | Category : Database, Internet, Technology
Tags : ,

BEGIN
UTL_MAIL.SEND (
sender => ‘[email protected]’,
recipients => ‘rst@yahoo.’,
subject => ‘test Oracle’,
message => ‘testing orcl’);
END;
/