Hi all, I'm trying to read the attachments both from inbox/send and stuck with that.
I already succeed to retrieve all other info (from, cc, bcc, subject, body, etc) and also succeed to read the MMS attachment, but when try to read the email attachment the attachment count always return 0.
Here is my code :
MMsvAttachmentManager& manager = store->AttachmentManagerL();
TInt count=manager.AttachmentCount();
//Where store is CMsvStore object
//This work with MMS but not with email
MMsvAttachmentManager& manager = emailMessage->AttachmentManager();
TInt count=manager.AttachmentCount();
//Where emailMessage is CImEmailMessage object
//This also not work for email, always return 0
Any suggestion?
Best regards,
WinHw





