e-mail function

  • Thread starter Thread starter ljb
  • Start date Start date
L

ljb

I have the options on my form set so that e-mails open when certain
checkboxes are clicked. However, if they are clicked by mistake, and
ultimately unclicked, the e-mails still open. Is there a way to prevent the
e-mails from opening when checkboxes are unclicked?

Thanks!
 
What triggers the open? Move your code to a different place. If you are
triggerring the email after a field (checkbox) is updated, then that code
will fire every time you change the field. If you only run the code before
updating or leaving the record, then you might have more luck. Of course,
you'd have to not just look to see that the field was checked, you'd have to
make sure that it was done while in this record. In other words, you would
not want it to fire emails as you scrolled through a record simply because
one od the fields was checked. You'd have to make sure the check was placed
there during this change.


All depends on what you are doing and how.

Rick B
 
Back
Top