Hi!!!
I´m trying to send a text MMS using the RSendAs api with this code:
RSendAs serv;
if ( serv.Connect() == KErrNone ){
CleanupClosePushL(serv);
RSendAsMessage msg;
CleanupClosePushL(msg);
//msg.CreateL(serv, KSenduiMtmMmsUid);
msg.CreateL(serv, KUidMsgTypeMultimedia);
msg.AddRecipientL(phoneNumber,RSendAsMessage::ESendAsRecipientTo);
msg.SetBodyTextL(SMSText);
msg.SendMessageAndCloseL();
CleanupStack::Pop(&msg);
When I test it using the emulator it´s says: "Feature not suported". I think it´s problem of the creation of the RSendAsMessage, or the KUidMsgTypeMultimedia constant.Can anybody help me please???
Thanks!!!



