Forum Moderators: open
Also, having problems enabling shtml files on same IIS server. Page loads fine, but receive error when loading shtml files:
HTTP/1.1 404 Object Not Found Server: Microsoft-IIS/5.1 Date: Sun, 26 Oct 2003 00:30:10 GMT Connection: close Content-Type: text/html
404 Object Not Found
Any clues?
var Mail = Server.CreateObject("CDONTS.NewMail");
Mail.To = "emailaddress@email.com";
Mail.From = "emailaddress@email.com";
Mail.Cc = EMail;
Mail.Value("Reply-To") = EMail;
Mail.Subject = "SUBJECT";
Mail.Body = msgBody;
Mail.Send();
Where EMail is input from form
and Body is dynamic from variable msgBody
-Matt