• I am using very simple VBscript to achieve the same thing, and attachements are allowed as well after small modification

    --------------------------------------

    Set oMsg = CreateObject("CDONTS.NewMail")

     oMsg.From = "abc"

     oMsg.To = "abc"

     oMsg.Subject = "you message"

     oMsg.Body = "you message"

     oMsg.Send

     Set oMsg = Nothing

    -------------------------------------

     

    Julia