Oracle 主题长度超过47的UTL_mail.send存在问题

Oracle 主题长度超过47的UTL_mail.send存在问题,oracle,Oracle,我正在使用utl\u mail.send在我的Pl SQL包中自动发送电子邮件。 当我使用主题字符长度超过47时,电子邮件的正文就被破坏了(附屏幕截图)。主题长度较短的电子邮件正变得完美 declare begin utl_mail.send(sender => 'Test@supersoft.com', subject => 'test10 Test10 more than 47 test 123456789091231

我正在使用utl\u mail.send在我的Pl SQL包中自动发送电子邮件。 当我使用主题字符长度超过47时,电子邮件的正文就被破坏了(附屏幕截图)。主题长度较短的电子邮件正变得完美

declare 
begin
        utl_mail.send(sender => 'Test@supersoft.com',
                      subject => 'test10 Test10 more than 47 test 1234567890912312453254325345',
                      message => 'Test',
                      mime_type => 'text/plain; charset=us-ascii',
                      recipients => 'interanet@supersoft.com');
end;

有谁能帮我解决这个问题。

我在今天早些时候读过这篇文章,这似乎是一个bug。正如他所建议的,您应该在以下位置检查修补程序支持:

问题是:

I am on 10g release 2 on windows 64 bit. 
When I tried to send an email with subject more than 44( or so ) characters . it gets truncated. 
Is there any limitation in using this package ?
I could not see any limitations specified in the documentation or in metalink.
他的匿名街区:

begin 
    utl_mail.send ( sender      => 'sender@ru.com" , 
                    recipients  => "powerusers@ru.com" , 
                    subject     => "Process is completed for both Sales Order Data."
                    test        => "Test");
end;
询问者的输出(与您的类似):

汤姆的回答是:

I see some filed issues regarding this with support. 
Your options would be 
a) file an issue with support and see if a patch exists for your system. 
b) use utl_smtp to send the mail yourself. 
我在今天早些时候读过这篇文章,这似乎是一个bug。正如他所建议的,您应该在以下位置检查修补程序支持:

问题是:

I am on 10g release 2 on windows 64 bit. 
When I tried to send an email with subject more than 44( or so ) characters . it gets truncated. 
Is there any limitation in using this package ?
I could not see any limitations specified in the documentation or in metalink.
他的匿名街区:

begin 
    utl_mail.send ( sender      => 'sender@ru.com" , 
                    recipients  => "powerusers@ru.com" , 
                    subject     => "Process is completed for both Sales Order Data."
                    test        => "Test");
end;
询问者的输出(与您的类似):

汤姆的回答是:

I see some filed issues regarding this with support. 
Your options would be 
a) file an issue with support and see if a patch exists for your system. 
b) use utl_smtp to send the mail yourself. 

提供的答案能解决您的问题吗?提供的答案能解决您的问题吗?