Security (Prevent displaying the dialog to Send or not Send)
When you use the code examples from my mail page it is possible you get this
security warning

If you use Outlook Express or Windows Mail as your default mail program you can turn off
this warning when you use the code examples in the first section on my mail page.
1: Start Outlook Express or Windows Mail, and then on the Tools menu, click Options.
2: Click the Security tab, and then click to remove the check mark from the
"Warn me when other applications try to send mail as me" check box.
3: Click OK to close the Options dialog box.
But if you use Outlook it is not so easy.
If you use Outlook 2007 you not see this warning with a correct installed system.
http://msdn2.microsoft.com/en-us/library/ms778202.aspx
But if you use Outlook 2000-2003 you must use a third party program to avoid the warning.
Express ClickYes
http://www.contextmagic.com/express-clickyes/
Outlook Redemption
http://www.dimastr.com/redemption/
Or try to use this SendKeys example if you use one of the Outlook object model examples
from my mail page. Instead of .Send in the code examples you can use this three lines.
.Display
Application.Wait (Now + TimeValue("0:00:02"))
Application.SendKeys "%s"
Note: SendKeys is not always reliable and this will not work on every computer
The S is from Send, if you not use a English version you must change this letter.
This tip is not working for the SendMail examples in the first section on my mail page.
Use CDO
Tip (my favorite way to send mail)
A much better option is to check out this page and see if CDO is working on
your machine. Working with every mail program (It will not use a mail program)
There are no security warnings when you use CDO to send mail.
http://www.rondebruin.nl/cdo.htm

If you use Outlook Express or Windows Mail as your default mail program you can turn off
this warning when you use the code examples in the first section on my mail page.
1: Start Outlook Express or Windows Mail, and then on the Tools menu, click Options.
2: Click the Security tab, and then click to remove the check mark from the
"Warn me when other applications try to send mail as me" check box.
3: Click OK to close the Options dialog box.
But if you use Outlook it is not so easy.
If you use Outlook 2007 you not see this warning with a correct installed system.
http://msdn2.microsoft.com/en-us/library/ms778202.aspx
But if you use Outlook 2000-2003 you must use a third party program to avoid the warning.
Express ClickYes
http://www.contextmagic.com/express-clickyes/
Outlook Redemption
http://www.dimastr.com/redemption/
Or try to use this SendKeys example if you use one of the Outlook object model examples
from my mail page. Instead of .Send in the code examples you can use this three lines.
.Display
Application.Wait (Now + TimeValue("0:00:02"))
Application.SendKeys "%s"
Note: SendKeys is not always reliable and this will not work on every computer
The S is from Send, if you not use a English version you must change this letter.
This tip is not working for the SendMail examples in the first section on my mail page.
Use CDO
Tip (my favorite way to send mail)
A much better option is to check out this page and see if CDO is working on
your machine. Working with every mail program (It will not use a mail program)
There are no security warnings when you use CDO to send mail.
http://www.rondebruin.nl/cdo.htm