5 pts.
 Notifications Microsoft Access and Outlook
I have created a form and one of the fields in the form is for the date of expiry for certifications. Is there a way that access can send a notification or some type of flagging through Outlook (or any other method for that matter) to let me know that someones certification expiry date is coming up?

Software/Hardware used:
ASKED: June 12, 2008  5:04 PM
UPDATED: June 13, 2008  2:31 PM

Answer Wiki:
You can write a query block into the Access database to handle the sending of the emails. You would need to write some software to open the Access database and run the query. VBA should include the ability to send email. ----------------------------------------- There is a way to include SMTP functionality within Access itself to send emails. Write a VBA module to do this. Build a macro called autoexec that invokes the VBA module, then exits Access. You can then create a Windows Scheduler job to open the database at a specific time. The database will open, send the email, then exit. When you need to get into the database, hold down the [Shift] key to skip the autoexec macro execution. Or create a mail-only database with links to the tables and use that one for the nightly mail job.
Last Wiki Answer Submitted:  June 13, 2008  2:31 pm  by  Denny Cherry   64,520 pts.
All Answer Wiki Contributors:  Denny Cherry   64,520 pts.
To see all answers submitted to the Answer Wiki: View Answer History.


Discuss This Question:
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _


 

What type of form is it? A contact form, message, appointment, etc?

You likely could do this with a VBA Macro, but I’ll need more information to be able to point you in the right direction.

 5,320 pts.