Skip to Main Content

SQL & PL/SQL

Announcement

For appeals, questions and feedback about Oracle Forums, please email oracle-forums-moderators_us@oracle.com. Technical questions should be asked in the appropriate category. Thank you!

utl_mail.send malforms the email message

steve.westSep 26 2005 — edited Oct 30 2005
utl_mail.send malforms messages

Hi,
I am trying to send simple text emails using utl_mail.send. If I receive the message to my thunderbird or outlook clients, I can read the body of the message. If I send the email to my cellphone or read the email in my browser-based webmail, the body of the email is lost. I have been using UTL_SMTP successfully for years, and don't have these problems. I want to use UTL_MAIl so I can send simple attachments, but I can't get the thing to go even for simple stuff!
Here is my code:
BEGIN
utl_mail.send (sender => 'steve.west@more4apps.com',
recipients => 'steve.west@more4apps.com',
subject => 'My Subject',
message => 'This is my body');
END;

Thanks,

Steve

PS My db version is 10.1.0.4.0
Comments
Locked Post
New comments cannot be posted to this locked post.
Post Details
Locked on Nov 27 2005
Added on Sep 26 2005
7 comments
605 views