How can I automate the sending of an email without the
security warnings using VBA in access only ?
According to Outlook MVP Sue Mosher: "The security dialogs that pop up when
an application tries to access certain Outlook properties and methods are
designed to inhibit the spread of viruses via Outlook; see
http://www.slipstick.com/outlook/esecup.htm#autosec. They cannot be simply
turned on or off with a user option or registry setting.
However, Outlook 2003 does not show security prompts on three specific types
of applications:
-- VBScript code in published, non-oneoff Outlook forms
-- Outlook VBA code that uses the intrinsic Application object
-- Outlook COM add-ins properly constructed to derive all objects from
the Application object passed by the OnConnection event."
And, here is a link to a March 2003 article by Sue on the subject of Outlook
2003 and its use of the security prompt:
http://tinyurl.com/3eqmv
Alternatively how can I do it if I am only knowledgeable
on writting code in access ie using Outlook object only.
Whatever application you use to automate creating and sending Outlook
emails, you will be using some form of Outlook VBA.