IMAPIFolder::CreateMessage

This content is outdated and is no longer being maintained. It is provided as a courtesy for individuals who are still using these technologies. This page may contain URLs that were valid when originally published, but now link to sites or pages that no longer exist.

Creates a new message.

HRESULT CreateMessage(
  LPCIID lpInterface,
  ULONG ulFlags,
  LPMESSAGE FAR * lppMessage
);

Parameters

  • lpInterface
    [in] A pointer to the interface identifier (IID) that represents the interface to be used to access the new message. Valid interface identifiers include IID_IUnknown, IID_IMAPIProp, IID_IMAPIContainer, and IID_IMAPIFolder. Passing NULL causes the message store provider to return the standard message interface, IMessage : IMAPIProp.

  • ulFlags
    [in] A bitmask of flags that controls how the message is created. The following flags can be set:

  • MAPI_ASSOCIATED
    The message to be created should be included in the associated contents table instead of the standard contents table. Associated messages are hidden from user interaction.

  • MAPI_DEFERRED_ERRORS
    CreateMessage is allowed to succeed even if the create operation has not fully completed. This implies that the new message might not be immediately available to the caller.

  • lppMessage
    [out] A pointer to a pointer to the newly created message.

Return Value

  • S_OK
    The message was successfully created.

Remarks

The IMAPIFolder::CreateMessage method creates a new message with generic or associated content and assigns an entry identifier. The entry identifier consists of a part that represents the message store provider and a part that represents the individual message.

Notes to Implementers

You can choose whether to set all of the required message properties in CreateMessage or in the message's IMAPIProp::SaveChanges method. You do not have to make these properties available until a successful save has occurred.

For more information about how to work with associated information, see Folder-Associated Information Tables and Contents Tables.

Notes to Callers

Some message store providers allow the entry identifier of the new message to be available immediately after CreateMessage returns; others delay its availability until the message has been saved. Because not all message store providers generate an entry identifier for a new message until you have called the message's IMAPIProp::SaveChanges method, you may not be able to access the entry identifier when CreateMessage returns. Also, the new message may not be included in the folder's contents table until the save occurs.

Expect the entry identifier assigned to the new message to be unique not only in the current message store, but most likely across all of the message stores that are open concurrently. One exception to this rule occurs when multiple entries for a message store appear in the profile, which causes the message store to be opened multiple times and entry identifiers to be duplicated.

To create an outgoing message, call the Outbox folder's IMAPIFolder::CreateMessage method.

If you delete a folder that contains a new message before the message is saved, the results are undefined.

MFCMAPI Reference

For MFCMAPI sample code, see the following table.

File

Function

Comment

FolderDlg.cpp

CFolder::OnNewMessage

MFCMAPI uses the IMAPIFolder::CreateMessage method to create and save a new message.

See Also

Reference

IMAPIProp::SaveChanges

IMAPIFolder : IMAPIContainer

Concepts

MFCMAPI as a Code Sample