Hi,
I use AppManager for launch email AppControl in my native app. But the content-type of the text is "text/plain".
I want to change this to "text/html".
I try to change the second parameter in Start() but it doesn't work.
This is my code :
String typeContent = L"text/html"; AppControl* pAc = AppManager::FindAppControlN(L"tizen.email", L"http://tizen.org/appcontrol/operation/compose"); if (pAc) { pAc->Start( null, &typeContent, &extraData, null); delete pAc; }
Can you help me ?
Thanks.