The component used for sending mail.
Set objMail = Server.CreateObject("CDONTS.NewMail")
objMail.From="SENDER"
objMail.To="ADRESSEE"
objMail.Subject="SUBJECT"
objMail.Body="MESSAGE_BODY"
objMail.importance=0
objMail.Send
Set objMail = nothing
![]()