%
If Len(Trim(Request.Form("Comments"))) > 0 Then
Set Mailer = Server.CreateObject("SMTPsvg.Mailer")
Mailer.FromName = "Fix the Reds"
Mailer.FromAddress= "busdunc@yahoo.com"
Mailer.RemoteHost = "mail.clarksremarks.com"
Mailer.Subject = "Fix the Reds"
Mailer.BodyText = "You want to: " & Request.Form("Comments")
Mailer.AddRecipient "mike clark","themizz3000-fixreds@yahoo.com"
Mailer.SendMail
'Change link to where they are sent after they send picks....
'Response.redirect "emailsent.asp"
End If
%>