Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
![]() |
![]() |
Home -> Community -> Usenet -> c.d.o.misc -> Re: Converting alias in smtp mail address
"Fulvio" <jkr1_at_libero.it> wrote in message news:<QsZU9.5074$YG2.130521_at_twister1.libero.it>...
> I'm trying to convert an email alias in a smpt mail address from an oracle
> stored procedure but I'm not able to find usefull informations about.
>
> I'm working in a domain with an internal exchange server.
>
> For example:
> in the domain there is the user "pippo" with email mark_at_domain.it
> if I send a mail from my client (outlook) to "pippo" the exchange server
> knows that pippo is mark_at_domain.it so the mail is succesfully delivered but
> if I try to send this mail from utl_smtp the mail is not delivered. The mail
> are correctly delivered only if the recipient is specified in smtp format.
>
> Someone could help me?
>
> Thanks
UTL_SMTP provides SMTP (Simple Mail Transfer Protocol) client side functionality. In SMTP, Email addresses must be in format,
MAIL FROM:<Sender_at_SenderHost.com>
RCPT TO:<Receiver_at_ReceiverHost.com>
You can read about this and other details about SMTP as defined in RFC 821 at http://asg.web.cmu.edu/rfc/rfc821.html#sec-3
Regards
/Rauf Sarwar
Received on Tue Jan 14 2003 - 18:35:01 CST
![]() |
![]() |