Hello,
my application sends SMS over a web gateway so I want to save a copy of this message to the user's Sent folder in Messaging application. The code is following:
OutlookSession ou = new OutlookSession();
SmsMessage sms = new SmsMessage();sms.To.Add(new Recipient("123456"));
sms.Update();
sms.Body =
"Text of the message";sms.Read = true;
sms.MoveTo(ou.SmsAccount.SentItems);
sms.Update();
Application.DoEvents();
ou.Dispose();
In the messages list view, recepient and time is displayed but "[no subject]" is instead of the body text. In the message view, only "To: 123456" is displayed, no body, no time. Same experience on Windows Mobile 5 for Smartphone (PC emulator) and real Windows Mobile 6.0 Professioal.
Am I doing something wrong?