Jorge Pinto wrote:
You need to manually & properly MIME format the message.
Hello folks,
>
I'm trying to use my send_mail procedure to attach a file and send the email
to the user using utl_smtp. I got the attachment file but it was my message
body and not my file that I wanted to. Any ideia what I'm doing wrong ?
>
I tried to use the following code
utl_smtp.write_ data(conn, 'Content-Disposition : attachment; filename="'||
p_filename ||'"' || utl_tcp.CRLF);
>
Thanks in advance,
>
JP
>
I'm trying to use my send_mail procedure to attach a file and send the email
to the user using utl_smtp. I got the attachment file but it was my message
body and not my file that I wanted to. Any ideia what I'm doing wrong ?
>
I tried to use the following code
utl_smtp.write_ data(conn, 'Content-Disposition : attachment; filename="'||
p_filename ||'"' || utl_tcp.CRLF);
>
Thanks in advance,
>
JP
Comment