I made my own accident on the to form. Now i recieve the error that the path canoot be found. I get the error when it tries to run the objmail.send I have objmail fields of to, from, subject, and body set. Am I missing a required field or is something else that could possibly be wrong? I'll post my code here to let you take a gander.
set objmail = Server.CreateObject("CDONTS.Newmail"

objmail.from = "sendingaccount@me.unit.mil"
objmail.To = "recieveingaccount@me.whatever.mil"
objmail.subject = testing
htmltext = htmltext & "<html>"
htmltext = htmltext & "<head>"
htmltext = htmltext & "<title>TESTING</title>"
htmltext = htmltext & "</head>"
htmltext = htmltext & "<body bgcolor=#ffffff>"
htmltext = htmltext & "<center>"
htmltext = htmltext & "<p>A test for everyone</p></center></body></html>"
objmail.bodyformat = 0
objmail.mailformat = 0
objmail.body = htmltext
objmail.send
set objmail = nothing