Hi,
I have problem in moving mms message from drafts folder to own created folder. I use CMsvEntry and MoveL method to do this operation.
Moving works but when I try to open message by using messaging application error note is shown "Messaging: Feature is not supported". Moved message is corrupted or something ??
In below is moving code.
//aParent is own created folder id
//aMessageId is Id of message what is wantted to move
CMsvEntry* entry = iMsvSession->GetEntryL( aParent );
CleanupStack::PushL(entry);
entry->SetEntryL( aMessageId );
entry->MoveL( aMessageId, aParent );
CleanupStack::PopAndDestroy( entry );

Reply With Quote
and sorry because posting in wrong category.


