Hi Luke, Thank you very much. It fixed the problem and I am now able to preview the email in RTF format before sending it. Since it is .NET, I also had to...
Outlook 2007, Exchange 2007 I am receiving this error when attempting to publish to the Organizational Forms Library: "Cannot publish the form because of a...
I'm sure this must be almost an FAQ, but my searching has failed to reveal the answer. I need to do a little processing of embedded messages within another...
If it is a regular (not embedded) message, you can use Namespace.GetItemFromID. In case of an embedded message, you cannot access it as MailItem. From:...
Bummer, it's an embedded message. Okay, I'll have to find a different way to accomplish my goals. Thanks. (I sure wish OL2007 didn't always double-space my...
Which methods were you thinking about? From: outlook-dev@yahoogroups.com [mailto:outlook-dev@yahoogroups.com] On Behalf Of Brad [VE3BSM] Sent: Friday, August...
The gist of it is that when you select multiple messages in a folder and hit Forward, this generates a new message with your selections as embedded ...
Exchange w/ Outlook 2003 client: In my office, we have a shared email account that we use to receive monthly reports from other departments. All of these...
1) Outlook doesn't have any rule condition to support that with personal distribution lists. You'd have to use a GAL DL. 2) Any "run a script" rule is by...
Thanks for the reply: 1: I had admin create a Distribution group for me, but when I tried running my rule using the group instead of the individual users, the ...
1) I may have been thinking of the rule for mail sent *to* a DL, not *from*. It's been a while since I used rules with a DL (another reason an event sink would...
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...