View Single Post
  #3 (permalink)  
Old Nov 28th, 2007, 08:55
robbied72 robbied72 is offline
Up'n'Coming Member
Join Date: Sep 2007
Location: Wales, UK
Age: 35
Posts: 87
Thanks: 1
Thanked 0 Times in 0 Posts
Send a message via MSN to robbied72 Send a message via Skype™ to robbied72
Re: ASP Form - email won't process

Who are you hosted with as some hosts block port 25 and you have to use a relay, also have you checked to see what mail components are installed on the server?

Use the attached file to determine what components are installed before you do anything else, you will have to change the file from .txt to .asp...

test_mailer_components.txt

Additionally when dim'ing variables you don't have to dim on separate lines, you can comma separate them like so:-

Code: Select all
<%
Dim vVar1,vVar2,vVar3
vVar1 = some_value
vVar2 = some_value
vVar3 = some_value
%>
Hope this helps you mate.
Reply With Quote