I can create the MMS to Inbox fine, but I can' t open it. When I try to open the MMS it says "Messages: Feature is not supported ( -5 )".If I put it to Drafts there is no errors. This happens in both Emulator and Phone.
Here is the code:
TMsvId messageId;
iMmsMtm->SwitchCurrentEntryL(KMsvGlobalInBoxIndexEntryId);
iMmsMtm->CreateMessageL(iMmsMtm->DefaultSettingsL());;
messageId = iMmsMtm->Entry().EntryId();
iMmsMtm->CreateAttachment2L(attachmentId,name);
iMmsMtm->SetAttachmentNameL(attachmentId,name);
iMmsMtm->AddAddresseeL(KAddressee);
iMmsMtm->SetSenderL(KSender);
iMmsMtm->SetSubjectL(KSubject);
iMmsMtm->SaveMessageL();
iMmsMtm->SwitchCurrentEntryL(messageId);
TMsvEntry indexEntry;
indexEntry = MmsMtm->Entry().Entry();
indexEntry.SetInPreparation(EFalse);
indexEntry.SetUnread(ETrue);
indexEntry.SetVisible(ETrue);
iMmsMtm->Entry().ChangeL(indexEntry);




