473,725 Members | 2,232 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Outlook Redemption not working ...

Hello all,
I am trying to make a program which sends emails without intervenience of
the user. It works fine except the Outlook always displays two warnings
with each email it is going t send : 1) That a "program tries to get access
to the emailadresses in the contactlist - and wether I want to allow this"
and 2) That a program is trying to send emails on my behalf - and wether I
want to allow this.
I tried to work around this by using Outlook Redemption, but I think this
goes a little beyond my skills as a programmer.
My question thus is : Does anyone have an example - or old code - he wants
to share, so I can see how it works and adapt it to my needs ?
Any help very much appreciated ..
Thanks
Ronny Sigo
Nov 12 '05 #1
3 5848
Hello Chuck;
Thanks for reacting, but sending the mails to the drafts folder won't do the
job, since I am talking about 200-300 emails. I really want it to send the
mails intervenience of the user, 'cause I don't want him to click 300 times
or so ....

"Chuck Grimsby" <c.*******@worl dnet.att.net.in valid> wrote in message
news:58******** *************** *********@4ax.c om...

Personally, I've never used the Redemption package, so I can't help
you there, but for a "quick fix" / work-around to avoid the Outlook
warnings, rather then using the user's "Inbox" to send the EMails,
send the mail to the User's "Drafts" folder.

The user will have to send the emails themselves (by clicking on
Send), but it avoids that stupid message/warning and it's even more
stupid 5 second wait.

On Sun, 2 Nov 2003 11:05:50 +0100, "Ronny Sigo"
<ro********@exa mple.invalid> wrote:
I am trying to make a program which sends emails without intervenience of
the user. It works fine except the Outlook always displays two warnings
with each email it is going t send : 1) That a "program tries to get accessto the emailadresses in the contactlist - and wether I want to allow this"and 2) That a program is trying to send emails on my behalf - and wether Iwant to allow this.
I tried to work around this by using Outlook Redemption, but I think this
goes a little beyond my skills as a programmer.
My question thus is : Does anyone have an example - or old code - he wantsto share, so I can see how it works and adapt it to my needs ?
Any help very much appreciated ..

--
Freedom Defined Is Freedom Denied. - The Illuminatus

Nov 12 '05 #2
As a matter of interest Chuck, why would you avoid Redemption (the software
product, as opposed to the religious salvation!)

Mike

"Chuck Grimsby" <c.*******@worl dnet.att.net.in valid> wrote in message
news:58******** *************** *********@4ax.c om...

Personally, I've never used the Redemption package, so I can't help
you there, but for a "quick fix" / work-around to avoid the Outlook
warnings, rather then using the user's "Inbox" to send the EMails,
send the mail to the User's "Drafts" folder.

The user will have to send the emails themselves (by clicking on
Send), but it avoids that stupid message/warning and it's even more
stupid 5 second wait.

On Sun, 2 Nov 2003 11:05:50 +0100, "Ronny Sigo"
<ro********@exa mple.invalid> wrote:
I am trying to make a program which sends emails without intervenience of
the user. It works fine except the Outlook always displays two warnings
with each email it is going t send : 1) That a "program tries to get accessto the emailadresses in the contactlist - and wether I want to allow this"and 2) That a program is trying to send emails on my behalf - and wether Iwant to allow this.
I tried to work around this by using Outlook Redemption, but I think this
goes a little beyond my skills as a programmer.
My question thus is : Does anyone have an example - or old code - he wantsto share, so I can see how it works and adapt it to my needs ?
Any help very much appreciated ..

--
Freedom Defined Is Freedom Denied. - The Illuminatus

Nov 12 '05 #3
"Ronny Sigo" <ro********@exa mple.invalid> wrote in message news:<3f******* *************** @reader0.news.s kynet.be>...

Set SafeItem = CreateObject("r edemption.safem ailitem")
Set oItem = oApp.CreateItem (0)
SafeItem.Item = oItem
Set myRecipient = SafeItem.Recipi ents.Add("Jo**@ Invalid.Com)
myRecipient.Typ e = 1 'To-reciever, not CC-reciever"
SafeItem.Subjec t = sMailSubject
SafeItem.Body = sMailBody
SafeItem.Send
Nov 12 '05 #4

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

2
1683
by: Purnachender Mamindla | last post by:
How can i get the senders email id using mapi control library in c#?
7
3301
by: Anushya | last post by:
Hi How to get the id of a name in contact items in outlook. How to do it thru redemption in .net?? i tried the code below. but it shows the error. pls have a look at the code Microsoft.Office.Interop.Outlook.NameSpace oNs; oNs = Connect.oApplication.GetNamespace("MAPI"); //it shows an error here - invalid cast exception
0
1596
by: Anushya | last post by:
Hi Sorry for disturbing again and again. i need all the from, to, cc in terms of id and not Name. But when i try to access from/to/CC of mailitem(Both thru Outlook and Redemption), i get Names instead of ID. Could get the senderID thru Redemption.SafeMailItem.Sender.Address. But how to get the id of To and CC(recepients)??
4
19313
by: John | last post by:
Hi Does anyone have a vb.net example of how to use redemption to send mail through outlook? Many Thanks Regards
9
2206
by: John | last post by:
Hi Is it possible to write vb.net code around outlook 2000 dlls and then use the code on ol2002 machines to send emails and bypass ol 2002 email block? Thanks Regards
8
8803
by: John | last post by:
Hi I am using the latest redemption. I am using the below code in vb.net to send mail in html format. The problem is that text does not get sent as html and html tags appear as they are in the message like '<HTML>' etc. Any idea what I am doing wrong? Thanks Regards
2
2449
by: Pieter | last post by:
Hi, I'm using a thight integration with Outlook 2003 (with an Exchange server) in my VB.NET (2005) application. Until now I'm using the Outlook Object Model, but it appears to be very slow, and has some problems: - doing a Move changes the ReceivedTime of the MailItem - I can't use RichText in the MailItem.Body (only allows plain text or HTML) - some other stuff like having to use small 'tricks' to show the default signature in an email
6
4757
by: AMP | last post by:
I am trying to write a windows sevice that will send emails. The data is stored in a database and the service scans the database for new entries It work well as a stardard windows app, but when you make is a service it all works except it will not sent the emails Attached is the public sub that should run, its the same code that in the stardard winform, both app's are using Threads
6
1985
by: =?Utf-8?B?UmljaA==?= | last post by:
How to suppress the Outlook 2003 security prompts from VB2005. When I tried to look at the body of a message or any other part of an outlook mailItem -- I get these annoying security prompts. I have to loop through several emails a day. Is there some code for suppressing this? I saw some articles about a product called Outlook Redemption which supposed suppresses these messages. I have not tried it. Anyone know how to use it? ...
0
9401
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers, it seems that the internal comparison operator "<=>" tries to promote arguments from unsigned to signed. This is as boiled down as I can make it. Here is my compilation command: g++-12 -std=c++20 -Wnarrowing bit_field.cpp Here is the code in...
1
9176
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows Update option using the Control Panel or Settings app; it automatically checks for updates and installs any it finds, whether you like it or not. For most users, this new feature is actually very convenient. If you want to control the update process,...
0
9113
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each protocol has its own unique characteristics and advantages, but as a user who is planning to build a smart home system, I am a bit confused by the choice of these technologies. I'm particularly interested in Zigbee because I've heard it does some...
0
8097
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing, and deployment—without human intervention. Imagine an AI that can take a project description, break it down, write the code, debug it, and then launch it, all on its own.... Now, this would greatly impact the work of software developers. The idea...
1
6702
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new presenter, Adolph Dupré who will be discussing some powerful techniques for using class modules. He will explain when you may want to use classes instead of User Defined Types (UDT). For example, to manage the data in unbound forms. Adolph will...
0
6011
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and then checking html paragraph one by one. At the time of converting from word file to html my equations which are in the word document file was convert into image. Globals.ThisAddIn.Application.ActiveDocument.Select();...
0
4784
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
1
3221
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated we have to send another system
3
2157
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence can significantly impact your brand's success. BSMN Consultancy, a leader in Website Development in Toronto offers valuable insights into creating effective websites that not only look great but also perform exceptionally well. In this comprehensive...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.