I am completely new to Access (have some experience with SQL server).
I am not sure if its even possible in MS Access 2010: if for one of table.dateField is today or earlier - need to send email about that record.
Extensive digging doesn't bring any results, seems its not feasible, but wanted group opinion on that. Thank you
If you are meaning that you need to execute say a query on a table, and that query will manage the execution of sending an email in respect of each offending row - then I dont think you'll have much luck;
You can open an email window from access, but this won't send an email by itself.
What are you using for your backend? If it's flexible, and you used SQL server for the backend then you could use an actual trigger which calls a stored procedure to send the email required.
Aside from this, all I can think of to do, would be
Hope this helps
The Microsoft Access application does not have any built-in feature to automatically scan the database and send email messages based on the status of records in a table. However, that does not mean that such a function is "not feasible" for information stored in an Access database. In fact, implementing such a feature could be as simple as this:
The following VBScript code could be run (via
cscript.exe
) every morning as a Scheduled Task under Windows. It will scan a table named [Patients] and send a "Happy Birthday" message to each person who has a birthday that day.