
Originally Posted by
akki123
If this example is not working then please suggest for another example.
Hello,
i've just tried the example on E7-00 (Nokia Belle) and it's working fine as suggested in the article.
Just added the second number in SmsHandler.cpp::CreateMsgL() :
Code:
iSmsMtm->AddAddresseeL( iRecipientNumber, entry.iDetails );
TBuf<15> PhoneNumber2;
PhoneNumber2.Copy(_L("<a real phone number>"));
TRAPD(error,iSmsMtm->AddAddresseeL( PhoneNumber2, entry.iDetails ));
if(error!=KErrNone)
{
TInt a=1;
}
no leave raised, two msgs sent. So the example/article seems fine.
Regards,
pg