TECHNOLOGIES
FORUMS
JOBS
BOOKS
EVENTS
INTERVIEWS
Live
MORE
LEARN
Training
CAREER
MEMBERS
VIDEOS
NEWS
BLOGS
Sign Up
Login
No unread comment.
View All Comments
No unread message.
View All Messages
No unread notification.
View All Notifications
Answers
Post
An Article
A Blog
A News
A Video
An EBook
An Interview Question
Ask Question
Forums
Monthly Leaders
Forum guidelines
Bharanidharan Arul
NA
2
0
Send mail confirmation dialog
Apr 1 2008 4:35 AM
Hello friends
I used Outlook interop to send a mail like this
Application OutlookApp = new ApplicationClass();
MailItem OutlookMail=(MailItem)OutlookApp.CreateItem(OlItemType.olMailItem);
OutlookMail.To = "
[email protected]
";
OutlookMail.Subject = "TEST";
OutlookMail.Body = "This is a test message";
OutlookMail.Send();
It is working fine. But before sending a mail, Outlook which is running in the background pops a dialog saying
A program is trying to send e-mail on your behalf.
Do you want to allow this?
If this is unexpected, it may be a virus and you should choose "No".
I don't want this dialog to appear. How to disable it?
Regards
Bharani
Reply
Answers (
0
)
load C++ dll from C#
Getting HelpString info from a VB dll?