vote up 1 vote down star
1

How can i write code for send SMS with delivery message in Windows Mobile? please guide me with C# or C++ code. I want to use SmsSendMessage API in this code because this API have more features.

flag

63% accept rate
Just a note that even tho you may request a delivery report you may not get one. It's up to the network support delivery reports and I have found most do not. – Shane Powell Jun 9 at 19:36

2 Answers

vote up 3 vote down

Microsoft.WindowsMobile.PocketOutlook Namespace

The Microsoft.WindowsMobile.PocketOutlook namespace provides classes that allow you to create and access PIM data items (Appointments, Tasks, and Contacts), and MAPI messaging items (e-mail and SMS messages), on mobile devices

SmsMessage Class in msdn

This sample shows how to send an SMS message to a mobile phone.

public void SmsMessageSend()
{
    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;
    }
link|flag
vote up 1 vote down

You could use SmsSendMessage to send the message and use SmsGetMessageStatus to get the status report of the sent SMS. This is all C++ code, but you can pinvoke it as well.

link|flag
Which parameters must be used in calling SmsSendMessage API for delivery? – mSafdel Jun 9 at 18:30
In the pbProviderSpecificData parameter you can set the Notification_Provider_Specific_Data struct: msdn.microsoft.com/en-us/library/… – tomlog Jun 9 at 18:40

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.