• We’re currently investigating an issue related to the forum theme and styling that is impacting page layout and visual formatting. The problem has been identified, and we are actively working on a resolution. There is no impact to user data or functionality, this is strictly a front-end display issue. We’ll post an update once the fix has been deployed. Thanks for your patience while we get this sorted.

MS Access - Auto Email alert

edmundoab

Diamond Member
Hi Guys,

Just want to know the capabilities of MS access whether using VB programming or SQL
is it able to handle a request to send an auto email alert on certain conditions?

I am planning to have a vendor design a function in MS access where it can notify say a pending call ticket that exceeds 20 days. and the system will compare the current date with the ticket open date and send an email to the user's email (well basically the person who opened the ticket)

or is such function just totally out of bounds for MS access?
that I will need full SQL or something?

any opinions welcomed
 
I have not used access in many years, but am pretty sure this is outside the scope of what access can do. It is not a server based product and has no processes that always run, so it can't be done WITHIN access.

BUT - you can:
A) create an external program that queries the database and sends the email; schedule it via task scheduler or always leave it running
B) maybe automate access via command line to generate a report and email it. Schedule via task scheduler.

This would be a task for SSIS or a simple stored procedure in "full" sql - that can be scheduled to run via sql server agent (MSSQL)
 
You can use the Outlook Object Library controls accessed through COM using VBA to send e-mails using Outlook from a PC running Access.
 
Thanks guys,
so that means there is a function within access that can somewhat link to our MS Outlook, in this case it should be sufficient as we are all using outlook for business emails
 
Back
Top