Print Page | Close Window

SMTP delivery setup.

Printed From: Web Wiz Forums
Category: General Discussion
Forum Name: Classic ASP Discussion
Forum Description: Discussion on Active Server Pages (Classic ASP).
URL: https://forums.webwiz.net/forum_posts.asp?TID=4211
Printed Date: 30 March 2026 at 6:38am
Software Version: Web Wiz Forums 12.08 - https://www.webwizforums.com


Topic: SMTP delivery setup.
Posted By: TDee
Subject: SMTP delivery setup.
Date Posted: 12 July 2003 at 10:28am

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 = " mailto:tduane@nycap.rr.com - 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!!




Replies:
Posted By: Mart
Date Posted: 12 July 2003 at 11:53am
Its quite easy to configure, fire up IIS (control panel > administrative tools > Internet Information Services) right click 'Default SMTP' server in the tree view and select 'properties'.

Then click the access tab and click the 'relay...' button, make sure the list that comes up is empty then check 'All exept the list below' click OK and your done.

Hope I helped, Mart.



Posted By: TDee
Date Posted: 12 July 2003 at 12:29pm

Its quite easy to configure, fire up IIS (control panel > administrative tools > Internet Information Services) right click 'Default SMTP' server in the tree view and select 'properties'.

Then click the access tab and click the 'relay...' button, make sure the list that comes up is empty then check 'All exept the list below' click OK and your done.

thanks but, I believe that allows others to use my server to relay messages. 

My issue is my messages stay in the Queue?  I'm not sure if my delivery options are set up correctly. 



Posted By: Mart
Date Posted: 13 July 2003 at 4:20am
Put the IP Address of your server with the asp script in the listbox if you dont want any tom dick and harry to use it...



Print Page | Close Window

Forum Software by Web Wiz Forums® version 12.08 - https://www.webwizforums.com
Copyright ©2001-2026 Web Wiz Ltd. - https://www.webwiz.net