Hi,
Following code does nothing, what do I wrong?
using (OutlookSession session = new OutlookSession) {
SmsMessage sms = new SmsMessage("+32444555444", "Hello world!");
session.SmsAccount.Send(sms);
sms.Update();
sms.MoveTo(session.SmsAccount.SentItems);
}
Nothing happens, ran it through the debugger and everything gets executed, but again, no sms is sent, nothing is in SentItems (saving sent msg is on)
Kr
Tom