Reputation: 11
I want to send excel file with email using PLSQL
I use XLSX_BUILDER_PKG to create excel files and it works fine. It creates excel files correctly.
https://github.com/commi235/xlsx_builder/blob/master/xlsx_builder_pkg.pks
declare
excel BLOB := empty_blob();
begin
xlsx_builder_pkg.clear_workbook;
xlsx_builder_pkg.new_sheet;
xlsx_builder_pkg.cell( 1, 4, 'Start date:', p_alignment => xlsx_builder_pkg.get_alignment( p_horizontal => 'center' ),p_fillId => xlsx_builder_pkg.get_fill('solid','99CCFF'), p_fontId => xlsx_builder_pkg.get_font( 'Calibri',p_bold => true,p_fontsize => 12) );
xlsx_builder_pkg.cell( 1, 5, sysdate,p_fillId => xlsx_builder_pkg.get_fill('solid','99CC99'),p_alignment => xlsx_builder_pkg.get_alignment( p_horizontal => 'center' ) );
xlsx_builder_pkg.cell( 4, 4, 'End date:', p_alignment => xlsx_builder_pkg.get_alignment( p_horizontal => 'center' ),p_fillId => xlsx_builder_pkg.get_fill('solid','99CCFF'), p_fontId => xlsx_builder_pkg.get_font( 'Calibri',p_bold => true,p_fontsize => 12) );
xlsx_builder_pkg.cell( 4, 5, sysdate ,p_fillId => xlsx_builder_pkg.get_fill('solid','99CC99'),p_alignment => xlsx_builder_pkg.get_alignment( p_horizontal => 'center' ));
xlsx_builder_pkg.save('EXCEL_FILES', 'emp8.xls');
excel := xlsx_builder_pkg.finish;
test_send_mail('[email protected]',
'[email protected]',
'Test',
'Test',
'excel.xls',
'application/vnd.openxmlformats-officedocument.spreadsheetml.sheet',
excel,
'myhost',
25);
end;
Then I want to send excel file as attachment, I used xlsx_builder_pkg.finish function to got BLOB and when I send email I've got it with attachment, but excel file is broken.
CREATE OR REPLACE PROCEDURE test_send_mail (p_to IN VARCHAR2,
p_from IN VARCHAR2,
p_subject IN VARCHAR2,
p_text_msg IN VARCHAR2 DEFAULT NULL,
p_attach_name IN VARCHAR2 DEFAULT NULL,
p_attach_mime IN VARCHAR2 DEFAULT NULL,
p_attach_blob IN BLOB DEFAULT NULL,
p_smtp_host IN VARCHAR2,
p_smtp_port IN NUMBER DEFAULT 25)
AS
l_mail_conn UTL_SMTP.connection;
l_boundary VARCHAR2(50) := '----=*#abc1234321cba#*=';
l_step PLS_INTEGER := 12000; -- make sure you set a multiple of 3 not higher than 24573
BEGIN
l_mail_conn := UTL_SMTP.open_connection(p_smtp_host, p_smtp_port);
UTL_SMTP.helo(l_mail_conn, p_smtp_host);
UTL_SMTP.mail(l_mail_conn, p_from);
UTL_SMTP.rcpt(l_mail_conn, p_to);
UTL_SMTP.open_data(l_mail_conn);
UTL_SMTP.write_data(l_mail_conn, 'Date: ' || TO_CHAR(SYSDATE, 'DD-MON-YYYY HH24:MI:SS') || UTL_TCP.crlf);
UTL_SMTP.write_data(l_mail_conn, 'To: ' || p_to || UTL_TCP.crlf);
UTL_SMTP.write_data(l_mail_conn, 'From: ' || p_from || UTL_TCP.crlf);
UTL_SMTP.write_data(l_mail_conn, 'Subject: ' || p_subject || UTL_TCP.crlf);
UTL_SMTP.write_data(l_mail_conn, 'Reply-To: ' || p_from || UTL_TCP.crlf);
UTL_SMTP.write_data(l_mail_conn, 'MIME-Version: 1.0' || UTL_TCP.crlf);
UTL_SMTP.write_data(l_mail_conn, 'Content-Type: multipart/mixed; boundary="' || l_boundary || '"' || UTL_TCP.crlf || UTL_TCP.crlf);
IF p_text_msg IS NOT NULL THEN
UTL_SMTP.write_data(l_mail_conn, '--' || l_boundary || UTL_TCP.crlf);
UTL_SMTP.write_data(l_mail_conn, 'Content-Type: text/plain; charset="iso-8859-1"' || UTL_TCP.crlf || UTL_TCP.crlf);
UTL_SMTP.write_data(l_mail_conn, p_text_msg);
UTL_SMTP.write_data(l_mail_conn, UTL_TCP.crlf || UTL_TCP.crlf);
END IF;
IF p_attach_name IS NOT NULL THEN
UTL_SMTP.write_data(l_mail_conn, '--' || l_boundary || UTL_TCP.crlf);
UTL_SMTP.write_data(l_mail_conn, 'Content-Type: ' || p_attach_mime || '; name="' || p_attach_name || '"' || UTL_TCP.crlf);
UTL_SMTP.write_data(l_mail_conn, 'Content-Disposition: attachment; filename="' || p_attach_name || '"' || UTL_TCP.crlf || UTL_TCP.crlf);
FOR i IN 0 .. TRUNC((DBMS_LOB.getlength(p_attach_blob) - 1 )/l_step) LOOP
UTL_SMTP.write_data(l_mail_conn, UTL_RAW.cast_to_varchar2(UTL_ENCODE.base64_encode(DBMS_LOB.substr(p_attach_blob, l_step, i * l_step + 1))));
END LOOP;
UTL_SMTP.write_data(l_mail_conn, UTL_TCP.crlf || UTL_TCP.crlf);
END IF;
UTL_SMTP.write_data(l_mail_conn, '--' || l_boundary || '--' || UTL_TCP.crlf);
UTL_SMTP.close_data(l_mail_conn);
UTL_SMTP.quit(l_mail_conn);
END;
I've used different MIME Types, but with 'application/vnd.openxmlformats-officedocument.spreadsheetml.sheet' I've got broken file (hashed information) and with 'application/vnd.ms-excel' I've got file that I couldn't open
Upvotes: 1
Views: 7301
Reputation: 81
Comparing this with code that I've got available you seem to be missing the mime header attribute Content-Transfer-Encoding, which should be Base64
UTL_SMTP.write_data(l_mail_conn, 'Content-Transfer-Encoding: Base64' || UTL_TCP.crlf);
Another thing to consider in case that the attachment gets really big, or the code is extended to allow multiple attachments, is to do the base64-encoding before opening the connection to the SMTP-server. Otherwise while converting/writing you might get timed out for keeping the session alive for to long.
Upvotes: 1