Results 1 to 2 of 2

Thread: Website Critique and ASP Question

  1. #1
    Senior Member
    Join Date
    Jul 2003
    Posts
    1,066
    Thanks
    1
    Thanked
    0 times in 0 posts

    Website Critique and ASP Question

    Well hello...

    ...Once again it's exam time (Uni for a change) and I procrastinate by redesigning my site. As usual critical analysis is welcome

    http://www.roguesaber.co.uk

    One question about the coding side, I'm using the following code for sending e-mail with the form on the contact page.

    Code:
    Dim objMail
    		Set objMail = Server.CreateObject("CDONTS.NewMail")
    
    		objMail.From = Request.Form("email")
    		objMail.Subject = Request.Form("subject")
    		objMail.To = "hgilmore@gmail.com"
    		objMail.Body = Request.Form("message")
    		objMail.Send
    		Response.write("Mail was Sent")
    
    		set objMail = nothing
    Basically it seems to be running fine but I'm not getting anything in my inbox! Now I can't see anything that's wrong with it so I'm guessing it may be an issue with my host, or have I missed something obvious?

    Thanks again guys!

  2. #2
    Large Member
    Join Date
    Apr 2004
    Posts
    3,720
    Thanks
    47
    Thanked
    99 times in 64 posts
    You need an smtp server to use.
    To err is human. To really foul things up ... you need a computer.

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •