Click here to Skip to main content
5,788,212 members and growing! (18,998 online)
Email Password   helpLost your password?
Platforms, Frameworks & Libraries » Mobile Development » Internet     Intermediate

Sending an SMS using CEMAPI

By EK_Kiwi

How to send an SMS using the CEMAPI APIs.
C++, eVC 3.0, eVC 4.0, eVC, Windows, CE 3.0, Win Mobile, Mobile, CE .NET 4.0, CE .NET 4.1, CE .NET 4.2, PocketPC 2002, WinMobile2003, Visual Studio, Dev

Posted: 13 Sep 2004
Updated: 13 Sep 2004
Views: 102,047
Bookmarked: 40 times
Announcements
Loading...



Search    
Advanced Search
Sitemap
14 votes for this Article.
Popularity: 5.12 Rating: 4.47 out of 5
0 votes, 0.0%
1
2 votes, 14.3%
2
0 votes, 0.0%
3
3 votes, 21.4%
4
9 votes, 64.3%
5

Sample Image - main.gif

Introduction

If you have not got a Pocket PC Phone Edition or Windows CE SmartPhone device, sorry this article will not be useful.

Now having got that out of the way, this article will show how to send an SMS to another SMS capable device, using the Windows CE MAPI API (A.K.A. CEMAPI) instead of the supplied SMS APIs.

Background

SMS or Simple Messaging Service is a means of sending a short message (160 characters max) to another SMS capable device via the GSM network. On Pocket PC Phone edition devices and Windows CE Smart phones, when selecting a folder, there should have been at least an ActiveSync and SMS message store and possibly an MMS message store as well.

These message stores hold messages from different transport providers locally on the device.

For the purposes of this article, we will be concentrating on the SMS message store as we want to use this to send a message.

Using the code

To make the code simpler and easier to understand, the bulk of the code uses MFC for the User Interface and ATL for smart pointer support.

If people request it, I may make a Win32 only version available as the relevant code (i.e., not the UI code) only requires ATL and not MFC.

In this article, I am not going through a listing of the creation of the MAPI session and opening of the SMS message store and outbox folder. The code is well commented and provided in the source zip file in the two functions GetSMSMsgStore and GetSMSFolder which get the relevant SMS message store and the SMS drafts folder.

So we start looking at the code when we have created a new message in the Outbox folder.

The bulk of the code involves creating the recipients and setting the sender and message status.

First is setting the recipient of the message. To make the code clearer, I have only set one recipient on for the message, although multiple recipients may be set, each one requiring three properties, the type of recipient, the type of address, and the email address.

Unfortunately, I found the code that Microsoft provided for the MAPI samples too complex as they were overshadowed by overly complex memory and pointer manipulation. To that end, I have provided a simpler implementation for recipients.

First, we create the properties that we need for a recipient.

        SPropValue propRecipient[3];
        ZeroMemory(&propRecipient, sizeof(propRecipient));
        // set the recipient type which coul be to, cc, bcc

        // but there must at least be a to field then the 

        propRecipient[0].ulPropTag = PR_RECIPIENT_TYPE;
        propRecipient[0].Value.l = MAPI_TO;
        propRecipient[1].ulPropTag = PR_ADDRTYPE;
        propRecipient[1].Value.lpszW = _T("SMS");
        propRecipient[2].ulPropTag = PR_EMAIL_ADDRESS;
        propRecipient[2].Value.lpszW = (LPWSTR)lpszTo;

If you want to add additional recipients to the message, you can expand the propRecipient to a multiple of three, and add the appropriate recipient type, address type, and address properties.

Next, the ADRLIST structure needs to be set with pointers to the recipient properties and the count of the properties. You will need to provide one ADRENTRY per recipient.

// we create the addlist structure and set it to point to the recipient

// properties

    ADRLIST adrlist;
    adrlist.cEntries = 1;
    adrlist.aEntries[0].cValues = 3;
    adrlist.aEntries[0].rgPropVals = (LPSPropValue)(&propRecipient);

    // finally modify the recipients of the message

    hr = spMessage->ModifyRecipients(MODRECIP_ADD, &adrlist);

Finally, we set the subject of the message as the text of the SMS body to be sent. Note that the length of the SMS message can be no longer than 160 characters as this is the maximum size of a message that can be sent using the GSM Short Messaging Service.

Lastly, we set the remainder of the properties, which are the sender as the person originating the message, and the message record type to SMS so that is gets enumerated by the transport and get sent correctly. Optionally, the message can have the message flags set which indicate that the message is unsent and originates from me.

SPropValue props[4];
ZeroMemory(&props, sizeof(props));
// set the subject

props[0].ulPropTag = PR_SUBJECT;
props[0].Value.lpszW = (LPWSTR)lpszMessage;
//Set the sender

props[1].ulPropTag = PR_SENDER_EMAIL_ADDRESS;
props[1].Value.lpszW = (LPWSTR)lpszFrom;
//Set the message status to indicate this message needs

//enumeration. Vital property!

props[2].ulPropTag = PR_MSG_STATUS;
props[2].Value.ul = MSGSTATUS_RECTYPE_SMS;
// Optional flags property for the message flags

// Seems to work okay without these being set

props[3].ulPropTag = PR_MESSAGE_FLAGS;
props[3].Value.ul = MSGFLAG_FROMME | MSGFLAG_UNSENT;
// Finally set the properties on the message

hr = spMessage->SetProps(sizeof(props) / sizeof(props[0]), 
                             (LPSPropValue)&props, NULL);

As all the properties and recipients have now been set on the message, it is safe to call SubmitMessage.

//Submit the new message to the message store so that it may be submitted to the 

appropriate message transport provider.

hr = spMessage->SubmitMessage(0);

If you wait a couple of seconds, the message will appear on the phone number you specified in the To field of the message. Also note that the sent message will now appear in the Sent Items folder as you would expect.

I have not included a Win32 or SmartPhone version of the code here at the moment. However, if anyone wants versions of it, email me and I will consider updating the samples to include SmartPhone and a pure Win32 version.

Points of Interest

None

History

No revisions thus far.

License

This article has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

A list of licenses authors might use can be found here

About the Author

EK_Kiwi


I make computers talk to other computers - well thats that I tell everyone I do. What I really do is connectivity and syncronization software for Windows Ce, PalmOS, Symbian on client devices and MFC/ATL/.NET on the Windows Servers.

I am also an expert with Microsoft Exchange and Databases and pretty good with Lotus Notes as well.

Occupation: Web Developer
Location: United Kingdom United Kingdom

Other popular Mobile Development articles:

Article Top
Sign Up to vote for this article
You must Sign In to use this message board.
FAQ FAQ Noise ToleranceSearch Search Messages 
 Layout  Per page   
 Msgs 1 to 25 of 71 (Total in Forum: 71) (Refresh)FirstPrevNext
QuestionHow to MMS?memberJinOtaHuo1:24 19 Oct '07  
AnswerRe: How to MMS?memberAdamwills3:04 24 Oct '07  
GeneralWIN 32memberManikumar V10:08 3 May '07  
Questionwindows mobile 2005membereantaru19:51 25 Apr '07  
QuestionRe: windows mobile 2005membereantaru21:42 25 Apr '07  
GeneralHow Do i get the count of SMS send in smartphonemember18:29 5 Mar '07  
QuestionHow i get datetime of messagemembernavy_blue_whale20:54 9 Nov '06  
GeneralStatus reportmemberawni0:52 2 Nov '06  
QuestionMobile transfermemberwarfans1:37 21 Sep '06  
GeneralGood jobmemberZhang Zhixiang22:59 3 Sep '06  
Questionhow can I read sms in my Pocket PC ?membernavy_blue_whale23:42 25 Apr '06  
QuestionSMS with unicodememberAAlGrou15:12 19 Apr '06  
AnswerRe: SMS with unicodememberlsnail23:21 24 May '07  
QuestionCan I create a message in the inbox?memberguest coder7:59 30 Mar '06  
GeneralRe: Can I create a message in the inbox?memberguest coder8:02 30 Mar '06  
AnswerRe: Can I create a message in the inbox?memberguest coder1:35 31 Mar '06  
Generalbe careful when using HRESULT !!memberFred D.4:41 20 Feb '06  
GeneralCODED SMSmemberconney22:55 14 Feb '06  
AnswerRe: CODED SMSmemberguest coder2:25 30 Mar '06  
GeneralMessage to the subject 2? And Strange CharactersmemberRalph Varjabedian23:19 17 Jan '06  
AnswerRe: Message to the subject 2? And Strange Charactersmemberguest coder2:19 30 Mar '06  
Generalhow send my remainder to any mobilemembermortga22:29 13 Nov '05  
Generalcan I read SMS from PCmemberprakasiwi23:38 21 Sep '05  
GeneralRe: can I read SMS from PCmemberEK_Kiwi23:36 3 Oct '05  
Generalmissing filememberAlejandroDG23:53 4 Jun '05  

General General    News News    Question Question    Answer Answer    Joke Joke    Rant Rant    Admin Admin   

PermaLink | Privacy | Terms of Use
Last Updated: 13 Sep 2004
Editor: Smitha Vijayan
Copyright 2004 by EK_Kiwi
Everything else Copyright © CodeProject, 1999-2009
Web20 | Advertise on the Code Project