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.
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?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
Thanks again guys!


LinkBack URL
About LinkBacks
Reply With Quote