asp forum problem
The following code does not work - no error message, the e-mail just does not arrive. Can anyone see the problem?
Untitled Document
<?php
@language="VBSCRIPT"
?>
<?php
Dim myMail, myBody
myBody ="website title: "& request.form("websitetitle") & vbcrlf & "websiteyurl: " & request.form("websiteurl") & vbcrlf & "websitedesciption: "& vbcrlf & request.form ("websitedes") & vbcrlf & "link: " & request.form("link") & vbcrlf & "e-mail: " & request.form("e-mail")
Set myMail = Server.CreateObject ("CDONTS.NewMail")
myMail.From = request.form("email")
myMail.To = "[email protected]"
myMail.Subject = "exchange links"
myMail.Body = myBody
myMail.Send
set myMail=nothing
Response.Redirect("thanks.htm")
?>