![]() |
Sergey Kornilov admin 3/17/2004 |
This is two step process. Take a look at this sample code.
if Session("DateComplete")<>Request.Form("DateComplete") then Set objCDO = Server.CreateObject("CDONTS.NewMail") objCDO.To = "bgates@microsoft.com" objCDO.From = "bgates@microsoft.com" txtSubject = "Any text here" objCDO.Subject = "DateComplete updated" objCDO.Body = txtSubject objCDO.Send set objCDO = Nothing end if
|