views:

10

answers:

0

hello

I'm developing a SMS send and receive app for my phone. Wen i send a SMS with the RequestDeliveryReport prop True i recive a message with the report BUT:

From witch SMS is that report.

My SMS send code looks like this:

SmsMessage smsMessage = new SmsMessage();

//Set the message body and recipient.
smsMessage.Body = "Would you like to meet for lunch?";
smsMessage.To.Add(new Recipient("John Doe", "2065550199"));
smsMessage.RequestDeliveryReport = true;

//Send the SMS message.
smsMessage.Send();

return;

And i recive the delivery report with message Interceptor.

10x