Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations TouchToneTommy on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Stop Confirmation of Email send in Outlook 1

Status
Not open for further replies.

CluelessJon

IS-IT--Management
Aug 11, 2003
158
GB
I have a list of clients that have a email sent to them via a automatic application process through OUTLOOK.

I need to be able to remove the security msg that says

" An application is trying to send a email. do you want to send Yes or no " that appears in OutLook when the Application trys send the emails off

Thanks


Regards

Jonno BrainDump Specialist
MCSE(NT) MCSA(2k) CCNA
 
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
If you are a standalone user, Outlook provides no way to suppress this behavior. However, you can use a free tool called Express ClickYes:
to click the security dialog buttons automatically. Beware that this means if a virus tries to send mail using Outlook or gain access to your address book, it will
succeed.

If you're the administrator in an Exchange Server or HP OpenMail environment, you can reduce the impact of the security prompts with administrative tools. See
If it's an application you wrote yourself, normally you can use one of these approaches to redo the program:

-- Use Extended MAPI
see and C++
or Delphi; this is the most secure method and the only one that Microsoft recommendeds.

-- Use Redemption
a third-party COM library that wraps around Extended MAPI but parallels the Outlook Object Model

-- Use SendKeys to "click" the buttons on the security dialogs that your application may trigger. See
for a link to sample code.

-- Program the free Express ClickYes
to start suspended and turn it on only when your program needs to have the buttons clicked automatically.

--
Source: Sue Mosher, Outlook MVP
 
Thanks alot buddy =)

Regards

Jonno BrainDump Specialist
MCSE(NT) MCSA(2k) CCNA
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top