Får du något felmeddelande?
Kan hitta anledningen varför inte cdonts mailet skickas iväg, får in all info från formulären så det är lugnt och min webhosting funkar med cdonts. Nån idé?
<% If Request.Form("entryForm") = "yes" Then
Dim myMail
Set myMail = CreateObject("CDONTS.NewMail")
myMail.From = request.form("email")
myMail.To = "tobias@dbskis.com"
myMail.Subject = "Registration for the Freeline Jam"
myMail.Body = request.form("message")
myMail.Send
Set myMail = Nothing
Else %>
<form name="signupForm" method="post" action="index.asp?top=competition&page=competitors">
<table width="300" class="main">
<tr>
<td width="100" align="right">email: </td>
<td><input name="email" type="text" class="mainForm" id="email" size="30">
</td>
</tr>
<tr>
<td width="100" align="right">message: </td>
<td><input name="message" type="text" class="mainForm" id="message" size="30">
</td>
</tr>
<tr>
<td width="100" align="right"> </td>
<td> </td>
</tr>
<tr>
<td width="100" align="right"> </td>
<td><input name="entryForm" type="hidden" id="entryForm" value="yes">
<a href="index.asp?top=competition&page=competitors" onclick="document.signupForm.submit(); return false;" >[ SIGN UP ]</a>
</tr>
</table>
</form>
<% End If %>


