have been having problem send mail with ASP. WELL i need help with .
this is the script
<%
Set Mail = Server.CreateObject("CDO.Message")
Set objConfig = Server.CreateObject("CDO.Configuration")
Mail.Configuration = objConfig
Mail.Subject = Request("name") & " recommends this site!"
Mail.From = "[EMAIL PROTECTED]" ' Specify sender's address
Mail.to= Request("email") ' Name is optional
Mail.TextBody= "Hey, this is " & Request("name") & "!. You have to
check out this site: http://www.skimawebsolution.com bye!"
'instead of using textbody use htmlbody
On Error Resume Next
Mail.Send
If Err <> 0 Then
Response.Write "Error encountered: " & Err.Description
End If
%>
the error was . " sendUsing " is invalid.
please help out.
Yahoo! Groups Links
<*> To visit your group on the web, go to:
http://groups.yahoo.com/group/AspClassicAnyQuestionIsOk/
<*> To unsubscribe from this group, send an email to:
[EMAIL PROTECTED]
<*> Your use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/