yes i have been searching the forum but i dont really get it

so that means i just do this? :
and above i enter a line for what scriptlanguage it is?
would that be vbscript here?
Dim objMail
Set objMail = Server.CreateObject("CDONTS.NewMail")
objMail.From = "rob@tconsult.com"
objMail.Subject = "How TO send email with CDONTS"
objMail.To = "someone@someplace.com"
objMail.Body = "This is an email message" & vbcrlf&_
"with CDONTS." & vbcrlf&_
"It is really easy. "
objMail.Send
set objMail = nothing
sorry im just new to this
