CDO.Message properties
Wed, 19 Mar 2008 07:54:11 -0700 (PDT)
Hi,
I am trying to get at the CDO.Message properties, in particular I need
to discover the charset and then attempt to rertrieve the Message.Text
using the particular charset, is this possible?
I am using c# .net 2.0 with CDO.dll (6.5.xxxxx).
Thanks, Mark ...
|
How to store mail attacments to file in C++
Wed, 19 Mar 2008 01:50:00 -0700
I need a little help here. I have an attacments of a message:
LPMAPITABLE atTable;
hStat = lpMessage->GetAttachmentTable(0, &atTable);
and after that I can open an attachment at position "attPos":
LPATTACH attItem;
lpMessage->OpenAttach(attPo ...
|
Copy an IStorage interface to an IStream interface for ATTACH_OLE attachments
Tue, 18 Mar 2008 15:57:48 -0500
How do I copy an IStorage interface to an IStream interface?
Attachments of type ATTACH_OLE seem to require an IID_IStorage
interface.
case ATTACH_OLE:
{
LPSTORAGE pSource = NULL;
LPSTREAM pDest = NULL;
STATSTG StatInfo = {0};
hr = pAttach->OpenProperty(PR_ATTACH_DATA_OBJ,(LPIID)&IID_IS ...
|
Cant see images within attachment
Sat, 15 Mar 2008 00:07:29 +0800
I currently have an application that runs a crystal report and exports it to
html format. This file is sent out as an attachment on the mail. The only
problem is the attachment images are not coming through.
I have worked out how to pull the images through for when the report.htm is
embedded directly into t ...
|
Failed to connect to PST file using MAPI
Thu, 13 Mar 2008 22:51:03 -0700 (PDT)
I am writing program for fetching data from Exchange sever and PST
files.
Program faces following four scenarios for connections
1. Repeatedly connect to exchange server
2. Repeatedly connect to PST file
3. First connect to exchange server and then to PST file
4. First connect to PST file and then to Exchan ...
|
RTF Conversion Error
Fri, 14 Mar 2008 11:42:34 +0900
Hi all,
I have come across a problem with an html message sent by my program to an
Outlook 2003 client. The client displays the message correctly, but when the
message is received, the small 'preview' tooltip (screenshot attached)
displays part of the raw message code.
The relevant section of the signatur ...
|
How to extract message as attachment from message
Thu, 13 Mar 2008 05:32:04 -0700
I have a message that contains another message with attachments. I want to
know how to extract this attached message as message in MAPI with all
attributes. Using GetAttachmentTable I get a list of attachments and with
OpenAttach I open an attached item. But this attached item is not a message
any more (and ...
|
|
|
Exchange Server 2000 and newer UNICODE string encoding
Wed, 12 Mar 2008 16:34:50 -0500
What is the encoding that Exchange Server 2000 and newer use to encode strings?
For example when I do the following:
LPSPropValue pProp;
hr = HrGetOneProp(lpMessage,PR_SUBJECT_W,&pProp);
std::wstring sWideString = (wchar_t *)pProp->Value.lpszW;
What encoding is sWideString in? I need to convert whatever it ...
|
PR_CREATOR_NAME_W and others
Wed, 12 Mar 2008 13:01:12 -0500
What should I define these following tags to be?
PR_LAST_MODIFIER_NAME_W
PR_CREATOR_NAME_W
PR_REPLICA_SERVER_W
PR_URL_NAME_W
PR_URL_COMP_NAME_W
...
|
MAPI API IMsgServiceAdmin::ConfigureMsgService failing
Wed, 12 Mar 2008 06:39:28 -0700 (PDT)
Hi,
I am developing application using extended MAPI to fetch data from
PST file in VC++. For this, I have temporary created profile (using
IProfAdmin::CreateProfile). In Profile, I have added "MSPST MS"
messaging service (using IMsgServiceAdmin::CreateMsgService) .
Now when I configure this messaging servic ...
|