I have a file on local drive let's say C:\test\att.csv. I had configured PL/SQL procedure to gather data from database and send an email. The att.csv file contains some values which I have send as an attachment of the email. Can you please help me how to do that. Below is my current code.
EXECUTE IMMEDIATE 'ALTER SESSION SET smtp_out_server = ''abcd.abc.ab''';
UTL_MAIL.send(sender => 'XXX@abc.com',
recipients => 'xxx@abc.com',
subject => 'Test Databases'',
message => v_htmlbody,
mime_type => 'text/html; charset=us-ascii');