|
SMTP Info Needed -
11-27-2002, 01:08 AM
I am trying to set up a script, but when I try to use it I am getting an error in the SMTP...
Here are a few combos I tried and the error I am getting with each...
$db_mail_path = '/usr/sbin/sendmail';
$db_smtp_server = 'smtp.adomain.com';
Error Message : Unable to init mailer! Reason: SMTP: server 'smtp.adomain.com' was not found.
$db_mail_path = '/usr/sbin/sendmail';
$db_smtp_server = 'adomain.com';
Error Message : Unable to send message. Reason: SMTP: Transmission of message failed.
$db_mail_path = '/usr/sbin/sendmail';
$db_smtp_server = 'mail.adomain.com';
Error Message : Unable to send message. Reason: SMTP: Transmission of message failed.
What is the correct SMTP server??
|