sending email with authentication [message #423673] |
Sat, 26 September 2009 05:36  |
mearaj.accounts
Messages: 3 Registered: May 2007
|
Junior Member |
|
|
Hi
i am using the following procedure to send email (from a trigger)
HTMLDB_MAIL.SEND(
p_to => :NEW.TO_EMAIL,
p_from => :NEW.FROM_EMAIL,
p_subj => :NEW.SUBJECT,
p_body => :NEW.BODY);
i can send emails only within my domain, but i need to authenticate in order to send email out side the domain
is there is a way to use a user-name and password and authenticate to the email server??
i have checked both 'utl_mail' and 'utl_smtp' but both does not seems to have a parameter for credentials
|
|
|
|
|