Hi
I´ve got this form that has worked perfect with CDONTS, but now when I must use CDOSYS I get this error:
Internal Server Error
The server encountered an internal error or misconfiguration and was unable to complete your request.
Please contact the server administrator to inform of the time the error occurred and of anything you might have done that may have caused the error.
More information about this error may be available in the server error log.
This is my form:
Could someone please say whats´s wrong, the host just say use CDOSYS and nothing more!
/Lizzi
I´ve got this form that has worked perfect with CDONTS, but now when I must use CDOSYS I get this error:
Internal Server Error
The server encountered an internal error or misconfiguration and was unable to complete your request.
Please contact the server administrator to inform of the time the error occurred and of anything you might have done that may have caused the error.
More information about this error may be available in the server error log.
This is my form:
Code:
subject ="EM LOTTEN"
sender = "webmaster@herremlotten.nu"
body = body & "HERR-EM LOTTEN: " & vbCRLF _
& vbCRLF _
& "Antal: " &vbTAB &antal &vbCRLF _
& "Distrikt:" &vbTAB &distrikt &vbCRLF _
& "Förening: " &vbTAB & club &vbCRLF _
& "Leveransadress:" &vbTAB &address &vbCRLF _
& "Postnr/Ort:" &vbTAB &vbTAB &vbTAB &vbTAB & zipcode &vbCRLF _
& "Kontaktman:" &vbTAB &vbTAB &vbTAB &vbTAB & contact &vbCRLF _
& vbCRLF _
& "E-post: " &vbTAB &vbTAB &vbTAB & mail & vbCRLF _
& "Tel.förening:" &vbTAB & cphone & vbCRLF _
& "Tel.bostad:" &vbTAB &vbTAB & hphone & vbCRLF _
' ## ...SEND ORDER
Set CDOMail = Server.CreateObject("CDO.Message")
CDOMail.From = sender
CDOMail.To = "info@ewd.se"
CDOMail.Subject = subject
CDOMail.HTMLBody = body
CDOMail.Send
Set CDOMail = Nothing
Could someone please say whats´s wrong, the host just say use CDOSYS and nothing more!
/Lizzi