Hi,
Can we access the standard sms outbox from a symbian application and delete a message from it ?
Regards,
Jayakrishnan.M
Hi,
Can we access the standard sms outbox from a symbian application and delete a message from it ?
Regards,
Jayakrishnan.M
Yes. Check following article - SMS Operations
Hi,
Yes, you can do it...
In HandleSessionEventL use EMsvEntriesCreated case for looking changes in Outbox.
// Only monitor for changes in the Outbox
if (aArg2 && *(static_cast<TMsvId*>(aArg2)) == KMsvGlobalOutBoxIndexEntryId)
{
}
More info: Go through Forum Nokia SMS example or SDK![]()