Date:  04/26/2007 04:42:37 PM Msg ID:  003395
From:  FoxWeb Support Thread:  003394
Subject:  Re: SMTP Server connection
Are you running an SMTP server on the same machine as FoxWeb?  If not, then you need to specify the name, or IP address of your SMTP server, instead of "localhost".
FoxWeb Support Team
support@foxweb.com email
Sent by Larry Zhang on 04/26/2007 01:18:32 PM:
I used these codes to send email.

mySmartMail =CREATEOBJECT("AspSmartMail.SmartMail")
   *SMTP Mail Server
   mySmartMail.Server = "Localhost"
   *From
   mySmartMail.SenderName = cName
   mySmartMail.SenderAddress = "lzhang@xyz.com"
 
   *To
   mySmartMail.Recipients.Add(cRecipients, cName)
   mySmartMail.CCs.Add(cRecipients, "")

    ......

 

 
But now I got an error:
"Can't connect to SMTP server."