Im using ASP with VBScript.
At some point of the code of the application that Im making some changes, I need to get a confirmation from the user if he wants or not to send a confirmation e-mail for the action he performed.
Its simple, like this:
Code:
sendEmail = MsgBox("Send e-mail?",5,"Confirmation") if sendEmail = 6 then Set objmail = Server.CreateObject("CDONTS.NewMail")