How to count number of sms in message before send

.NET library for SMPP protocol
Locked
medved45
Posts: 2
Joined: Mon Dec 05, 2011 3:12 am

How to count number of sms in message before send

Post by medved45 » Thu Nov 14, 2013 11:42 am

I need to know a total count of sms in one message(for long messages).
Is there any available built in tool for this, or a have to make my own calculator?
alt
Site Admin
Posts: 985
Joined: Tue Apr 25, 2006 9:45 am

Re: How to count number of sms in message before send

Post by alt » Thu Nov 21, 2013 3:50 pm

You can use Create method in sms builder. It helps to get SMS parts count before submit to SMPP server.

Code: Select all

var submitSmList = SMS.ForSubmit()......Text(longText).Create(client);
Locked