Oracle FAQ Your Portal to the Oracle Knowledge Grid
HOME | ASK QUESTION | ADD INFO | SEARCH | E-MAIL US
 

Home -> Community -> Usenet -> c.d.o.misc -> Re: Converting alias in smtp mail address

Re: Converting alias in smtp mail address

From: Rauf Sarwar <rs_arwar_at_hotmail.com>
Date: 14 Jan 2003 16:35:01 -0800
Message-ID: <92eeeff0.0301141635.38bffa7a@posting.google.com>


"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

Original text of this message

HOME | ASK QUESTION | ADD INFO | SEARCH | E-MAIL US