This topic is locked

Email when record is edited or added to true

11/14/2007 4:54:53 PM
ASPRunnerPro General questions
H
hawk author

All I need to do is have an email sent when a specific record is marked true. I'm using asprunner pro.

Sergey Kornilov admin 11/15/2007

Use BeforeAdd/BeforeEdit events and the following code:

if dict("FieldName")=1 then

sendmail email, subject, message

end if