Need help setting up the delivery configurations in my SMTP server.
I am seving a website from my home PC with IIS 5.X on win XP. I have written an email form that uses the following CDNOTS code.
<%
Dim Mname, Memail, Mcomments, Mphone, Maddress
Mname = Request.Form("Name")
Memail = Request.Form("Email")
Mphone = Request.Form("Phone")
Maddress = Request.Form("Address")
Mcomments = Request.Form("Comments")
Dim Mailer
Set Mailer = Server.CreateObject("CDONTS.NewMail")
Mailer.To = "tduane@nycap.rr.com (Tom Duane)"
Mailer.From = Memail & " (" & Mname & ")"
Mailer.Subject = "Estimate Request"
Mailer.Body = Mname & " " & Memail & " " & Mphone & " " & Maddress & " " & Mcomments
Mailer.Send
Set Mailer = nothing
%>
The code works fine and so does the CDNOTS DLL or whatever it is. My email is captured and sent to the Queue folder. But It just stays in the queue folder.
What should my delivery options be. Specifically for the FQDN and the smart host.
As of now I have my IP address in the FQDN and my ISPs SMTP server in the smart host?????
Help please, I have searched many threads and cannot find a shred of info on how to setup the SMTP delivery options. Thanks!!