Hallo Gemeinde
Bei folgender VBscript Function bekomme ich den Fehler
Objekt erforderlich:'Server'
<script language="VBScript">
<!--
Function Bestellen()
Set objMail = Server.CreateObject("CDONTS.NewMail")
objMail.To = "xxx@mail.com"
objMail.From = "xxx@mail.com"
objMail.Value("Reply-To") = "xxx@mail.com"
objMail.Subject = "Verkauf"
objMail.Body = "Ich will alles"
objMail.Send
Set objMail = Nothing
end Function
-->
</script>
Wer kann mir Dummkopf helfen ?