I have a need for an Outlook macro that can be run when a specific email is open. The macro has to open in turn two attached .pdf files and then somehow read...
Hello outlook-dev list members - all 2600+ of you! I'm pleased to announce that after 9 years and more than 27,000 messages, I'm turning over ownership of this...
Hi In an outlook addin I am building I use RDO to intercept an email before it is sent and add some custom X-headers. This works fine. I had been using this to...
Why not add an attachment to the message? That would create a MIME part with your data. From: outlook-dev@yahoogroups.com [mailto:outlook-dev@yahoogroups.com]...
Is there any way through any model or tool (Outlook Object Model, Exchange Extension, Mapi, Redemption, etc...) to block the code on a custom outlook form from...
Remove all the code from the form and handle all the events in your addin, that's about the only way. The code in the form is not accessible to the addin. Ken...
Simple is best. Thanks Dmitry, I'll try to do it that way. best regards ... part with ... dev@yahoogroups.com] On ... had ... email ... thinking ... body. ... ...
Dmitry, Thanks for your advice the other day. I have converted my addin so the data is now transferred as an attachment rather than as part of an X-header, and...
Outlook hides embedded images. I don't know if the attachments get hidden based on the content-id header alone or whether it also looks if the HTML body...
Thanks again Dmitry. Thinking about it again, I realize I didn't properly explain what I was trying to achieve. While the addin is only for outlook users so ...
The problem is there is almost no *direct* way for you to control the MIME structure of a message. You can add custom headers to the message, add attachments,...
Thanks. That was what I was fearing. When you say "ALMOST no *direct* way", does that mean there IS some way but it's dangerous/overly complex? ... the MIME ...
I see. And you can control the MIME structure of the message *indirectly* that way. So I have added my attachment no problem. I can change the display name...
By encoding I mean base64, uuencode, etc - useless for what you are trying to do. Again, the only way to add an extra MIME part is to add an attachment. You...
Thanks again. The data is basically encrypted and compressed XML. The size is indeterminate at design-time because it depends on the number of individual items...
Dmitry Your comments gave me lots to think about. Thanks. I believe Exchange 2003 onwards stores incoming internet messages in MIME format and only converts...
Hi, I have an outlook form with 5 checkbox and would like the checkbox to populates the "to" field. Ex. If I check chk1 chk4 and chk5 then I would have...
Bourbeau, Martin
bourbm@...
Oct 30, 2008 1:01 pm
27734
Extended MAPI isn't supported at all for use in managed code, the memory models are incompatible. And Extended MAPI requires programming in C++ or Delphi only....
What do you mean by the box would have to be checked for the reader? Do you mean for the recipient? That would be difficult. For the checkboxes, once you read...
Hi I am new to Outlook programming , at the moment I am working on a requirement for importing the new mails coming to the Outlook into a database (Preferably...
Yes reader meant recipient, that part is not a big deal if the box can't remain check once send, but I believe it is possible... The recipient should be added...
Bourbeau, Martin
bourbm@...
Nov 10, 2008 1:43 pm
27738
There's some sample event code here for automatic handling of certain items. http://www.outlookcode.com/codedetail.aspx?id=456 ...
Shamir, If you are using Outlook with Exchange, you can link directly to the Exchange database and pull all of the information you are looking for. The Inbox...
This is a question about Styles in the WordEditor of Outlook. From Outlook2003 - if you had specified to use Word as your e-mail editor and even in Outlook2007...
We have an Access program that creates multiple Outlook drafts (electronic invoices). How can we send them all at once without opening each one to send it. ...
What version of Outlook? How does the Access code create the Outlook items, does it use the Outlook object model? Ken Slovak Slovak Technical Services, Inc. ...
... Ken, Outlook 2003. The Access code creates the drafts and they go in the Outlook Drafts folder which is a subfolder under my name. I wrote this code to...