How to send and receive SMS messages from a C # application using a Nokia mobile phone

Ok, so what I need to do is write C # code to integrate into an existing application.

Iโ€™m most likely going to use the Nokia 7230 mobile phone, and Iโ€™m ready to use the SDK / API for PC from PC or just AT commands from C #, no matter what works.

The trick here, however, is that I have absolutely no idea where to start. I would be infinitely grateful if someone could give me a step-by-step guide / tutorial on how to get things going. I downloaded the latest versions of the PC Connectivity SDK, PC Connectivity API, PC Suite and Nokia Connectivity Framework.

If I can even verify the code with the emulator before buying a phone, it will be fantastic.

Thank you in advance for your help / advice.

+7
c # sms nokia
source share
3 answers

GSMComm is a useful C # library for this, it comes with samples / tools that can be used together.

I get the impression that you are going to buy a Nokia phone specifically for processing your SMS messages? If so, you can simply buy a GSM modem (depending on your location) they are cheaper, do not include extraneous functions and do not depend on the use of special software from the manufacturer.

+8
source share

What you are looking for is called an SMS Gateway. Most articles on the Internet discuss how to create it using Linux.

I really found this article that teaches you how to do this using C #: http://www.ozekisms.com/high-performance-sms-gateway/product-manual/index.php?owpn=315

+1
source share

It looks like you need a Nokia PC connection interface (note: Forum Forum registration is required):

Developers can use the content access API to create PC applications that create, modify, and delete SMS and MMS messages. The API can be used to send and receive SMS and MMS messages.

+1
source share

All Articles