(Only works with Office 2003/2007)

This is part of the Outlook Security Model and cannot be disabled.
Fortunately since Outlook 2003 it is possibe to avoid the warning messages using VBA code to be put inside Outlook.
In Outlook 2003 or later, if a MAPI MailItem object is created from within the VBA project (specifically the 'ThisOutlookSession' module), it is assumed to be "Trusted" and will not prompt the usual security messages when attempting to call the .Send method or when making use of the Outlook address book. We will be using this "Trusted" method to create an exposed Outlook VBA function that creates and sends the MailItem and then call this using Automation from our application. In our example, we will be calling the exposed Outlook VBA function from within Access. The exposed Outlook function we use from Mail Merge for Microsoft Access is called ammolSendMail.
Open Outlook
Go to the menu item Tools / Macro / Visual Basic Editor
In the VB environment expand the project node (usually called 'Project1')
Find and open the module 'ThisOutlookSession' (double click to open)
Copy and paste the code from here: Add this code in module ThisOutlookSession
Close Outlook and safe changes
From now on you will no longer be bothered by the outlook security warning when you send emails using 4TOPS Mail Merge.