Send an email automatically based on value of field

  • Thread starter Thread starter John Conklin
  • Start date Start date
J

John Conklin

Hello all,

Can anyone point me to an example of how to send an email automatically when
the users set a value in a certain field in my database?

I have a field called Urgent Time, and if a value is entered in that field I
want to automatically send an email to four people notifying them of the
urgent issue.

Any suggestions appreciated.

Thanks,
~John
 
In the AfterUpdate, use the SendObject method when the criteria is correct.

Something like:

If chkUrgentTime then
docmd.sendobject ...
end if
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top