E52 - Sending multiple sms

Hi all... 
Please, if you can help me with this...
I want to send a message to a few numbers (let say to 50)...same message to 50 diferent numbers but i'm having a problem becouse the massage format is not good...
i put number1; number2; number3;....but i'm getting sending massage failed.
before one year , i have already sent a masseges in this way and everything worked perfectly (with older mobile phone).
Could be a problem with symbian? maybe is not good  format of numbers? windows 7 (before i used xp)?
any advice....
Thanks in advance...
best regards,
dragan from Montenegro.

Yes ....
To add a contact as a recipient, tap '+' or tap Add recipient to start writing a name or typing in a
phone number. Of course You can add more than one recipient...
Nokia Asha Lover..... and Proud to be a Nokian
If this post helped you, don't forget!! click on the white star

Similar Messages

  • How can i send multiple sms from my iphone 4

    how can i send multiple sms from my i phone 4

    Turn Group Messaging (instructions in lin that follows) off and send the message to multiple recipients. The result may be dependent on your carrier. If manually keying in numbers rather than using contacts, use the return key after each number. http://support.apple.com/kb/HT5760

  • HT202724 How i can send multiple sms from mac without being a group message ?

    How i can send multiple sms from mac without being a group message ?

    Start new conversations, one for each recipient.

  • Sending multiple SMS messages

    I just got my iphone yesterday, and cannot figure this out. I need to send multiple texts at once (ex: hey guys, got a new phone- here's my new number) but I can only send to one person at time. Is it possible to send to multiple people at once?
    Help!

    Sorry about this news!!!
    SMS in iPhone is so cool however it is still at the stone age
    I have posted at apple to add this feature and many others missing in this application.
    In the meantime, use your email (where you can send to multiple addresses) to inform your friends about your new phone number.
    Have fun,

  • Sending multiple SMS for Nokia 501

    Is sending an SMS to multiple contacts possible in Nokia Asha 501?
    Moderator's Note: We have amended the title of this post as it was moved from another board.
    Solved!
    Go to Solution.

    Yes ....
    To add a contact as a recipient, tap '+' or tap Add recipient to start writing a name or typing in a
    phone number. Of course You can add more than one recipient...
    Nokia Asha Lover..... and Proud to be a Nokian
    If this post helped you, don't forget!! click on the white star

  • PC Suite SMS programme sends multiple SMS

    Hi,
    If I write an SMS using the message editor in the PC Suite message centre it multiplies the number sent as soon as I press "send message". Usually by 4. So a message sent to "Friend" will suddenly show up as "Friend", "Friend", "Friend", "Friend" the moment I press and be sent four times. A message sent to "Friend 1", "Friend 2" will be sent to "Friend 1", "Friend 1", "Friend 1", "Friend 1", "Friend 2", "Friend 2", "Friend 2", "Friend 2". This appears to happen with all contacts.
    Bizarre. Anyone with any ideas?

    No trouble - very kind of you to help!
    * Are you too facing similar issue?
    Yes - the poster says "...it actually sends four identical messages instead of one!" this is the same symptom.
    * In which numbers you are facing this kind of issue?
    All, as far as I can remember. I'll try an 'unknown' number not in my phone book later this evening. It's not just foreign numbers or when using a foreign operator as seemed to be the case with the Communicator user in the other thread.
    * Is this happening even if you send message via phone?
    No - messages entered into the phone are unaffected - it's only PC Suite messages that are affected. It appears affected at the message editor level - I'll have "Friend" listed as the recipient but as soon as I press Send the To: field will immediately jump to showing "friend, friend, friend, friend" and proceed to send the message four times.
    * In case of Communication centre, is it happening with all kind of connectivity Bluetooth/IR/Cable?
    I don't have IR and haven't ever got the bluetooth to work so I only use cable. I'll also have a crack at making Bluetooth work this evening & see what happens.
    Many thanks,
    Evan

  • In iOS8 and iOS8.1 there is no provision of sending multiple SMS to a group of people! What to do in this case?

    Iam using iPhone 5s with operating system iOS 8.1 which is just released by apple. I am having problem in sending SMS to a group of people or multiple friends. When i tried to do this it always shows group MMS. What should i do in this situation?

    You need to ask for support in the iMovie forum.

  • PC Suite sending multiple SMS

    Hi,
    Here some of our readers are facing issue like Nokia Communication Centre sends 4 messages to the receiver.
    If the contact's last name contains comma sign (,), pc suite sends 4 messages.
    If the contact's last name contains semicolon sign (, pc suite sends 2 messages.
    Hence kindly make sure that none of the contact contains special characters

    Hi rusql,
    It may sound wierd But could you please check if any of your contact's name has got comma sign (,) including in it? If yes, remove that comma sign from the Contact name (not in address field )
    Even i know its difficult to find a comma sign out of 1000 contacts, thanks to search function of Nokia Communication Centre, search for a comma sign in Nokia communication centre, if any of your contact name has got comma sign remove it and then try to send sms from Nokia Communication Centre, If it resolves your issue, please let our forum know regarding the same.
    When i checked this issue further, for names having last name followed by a , in it say for example,
    First Name : X
    Last Name : Y,
    XY,
    Nokia communication Centre sends 4 identical messages but phone sends only one message to that contact,
    if the same name containts ;
    XY;
    Nokia Communication Centre sends 2 identical messages but phone sends only one message to that contact,
    So while saving contact's name make sure that it does not contains any special characters along with it.
    Similar to your issue, was discussed in following page
    /discussions/board/message?board.id=pcsuite&thread.id=30325&view=by_date_ascending&page=2
    Check your contact last name has got any special character and edit it, which will resolve your issue

  • Sending multiple sms's separately

    Hi all,
    ive developed an application which is capable of sending smss. when i send 300 characters as a single sms, it automatically devides into 2 smss and send to the destination, and at the destination all the characters are reassembled and displayed as a single message.
    this works perfectly well.(but that also support upto 6 messages)
    now i want to send the 300 characters as 2 smss. but it only works foe one sms, the first sms out of two, will only be sent to the destination.
    the second sms has been ignored totally, no exceptions no errors.
    ill write down the code here,
    try{
              smsconn1 = (MessageConnection)Connector.open(address);
              TextMessage txtmessage1 =
    (TextMessage)smsconn1.newMessage(MessageConnection.TEXT_MESSAGE);
         txtmessage1.setAddress(address);
         txtmessage1.setPayloadText(mes);
         smsconn1.send(txtmessage1);
              catch (Throwable t) {
         System.out.println("Send caught: ");
         t.printStackTrace();
         if (smsconn1 != null) {
         try {
    smsconn1.close();
              catch (IOException ioe) {
    System.out.println("Closing connection caught: ");
    ioe.printStackTrace();
              try{
              smsconn1 = (MessageConnection)Connector.open(address);
              TextMessage txtmessage1 =
    (TextMessage)smsconn1.newMessage(MessageConnection.TEXT_MESSAGE);
         txtmessage1.setAddress(address);
         txtmessage1.setPayloadText(s);
         smsconn1.send(txtmessage1);
              catch (Throwable t) {
         System.out.println("Send caught: ");
         t.printStackTrace();
         if (smsconn1 != null) {
         try {
    smsconn1.close();
              catch (IOException ioe) {
    System.out.println("Closing connection caught: ");
    ioe.printStackTrace();
    only the underlined portion works.
    pls pls if any one can assist me in solving this pls reply as soon as possible,
    thanks in advance
    dushi

    Yes ....
    To add a contact as a recipient, tap '+' or tap Add recipient to start writing a name or typing in a
    phone number. Of course You can add more than one recipient...
    Nokia Asha Lover..... and Proud to be a Nokian
    If this post helped you, don't forget!! click on the white star

  • Sending multiple sms to my email

    I have at least a hundred texts that I would like to send to my email.  Is there a way that I can send them to my email without having to forward them one at a time?

    Directelt this cannot be done from the BlackBerry handheld. However, you can use ABC Amber Converter application. This application can read BlackBerry Backup data and and convert them to any desirable format. After that you can send them to you email ID.
    tanzim                                                                                  
    If your query is resolved then please click on “Accept as Solution”
    Click on the LIKE on the bottom right if the post deserves credit

  • Multiple sms - please reply - help!!!!

    hello
    someone on the forum suggested that a text file can be sent through multiple sms and then reassembling them into a text file
    I'm not really sure how to do that
    please can you give some idea, reference or eamples...
    thanx
    Forum

    no this is a part of a project where one user needs to deliver a text file to a remote user
    just a small doubt (actually I'm new to j2me so please excuse me if its a silly doubt)...
    as for chopping and sending, it doesnt matter rite that the text is coming from a text file?
    my program that sends the sms must read from the text file and send multiple sms'es ??
    thanx
    Forum

  • My iphone 4 says outgoing whenever i send an sms to multiple recipients.  does this mean it's still trying to send the message?

    my iphone 4 says outgoing whenever i send an sms to multiple recipients.  does this mean it's still trying to send the message?

    Perhaps someone from Apple could reply to this rather than leaving it unanswered?

  • My device keeps receiving multiple sms from one specific number.

    I have an Iphone 4, my device keeps receiving multiple sms from my customer in Germany. I am in India. Although he just sends it once, I keep receiving them for days. Sometimes to the tune of 600 smses a day, even night. I have to turn off my sms notifications and vibration. I tried factory reset and all other resets, but only factory reset works for some time. After reseting it everything is fine for 3-4 days and then again the multiple smses start. The same sms again and again. It is frustrating. If I travel to another network area (roaming) it stops. But if I am back in my home network and my customer sends me a sms then it starts repeating itself. Only sometimes the smses are not repeated. I am on Vodafone network and had a huge fight with them but they claim that everything is smooth on their side. It is a problem with my Iphone. If I put my sim in another Iphone4, the smses stop. Help!!

    Hey there
    I’m sorry to hear you have been unable to text your dad! We certainly need to help get this sorted out as soon as possible. What we can do is research our systems to see if there have been any issues on our end receiving those texts. Can you please send me a private message by Clicking Here and include the following information?
    Full name
    Cell number
    Dad’s number
    Best time to reach you
    Thanks!
    Charise

  • Loss of Multiple SMS Facility

    I upgraded my first generation 16Gb iPhone last night and I have now lost the facility to send an SMS message to multiple recipients. This was added a few updates ago and is very useful. Anyone else lost this feature ?

    Answered my own question - you now have to touch the To: line once you have added one recipient to bring the + symbol back again and add further recipients. Don't know why Apple felt this was necessary as it adds extra key-strokes to the process but at least the feature is still there.

  • Can I send multiple texts?

    Can I forward or send a text to multiple people? and why can't I view multimedia texts?

    No MMS is a topic that has been hotly debated on these boards and any answer you may find is either opinion or speculation.. only Apple knows why MMS was omitted.
    You cannot send multiple texts via the SMS app on iPhone, but you can send multiple texts by way of the mail app. All you need it the specific email address each provider has for it's subscribers, I don't have the list handy but if you google or search the forums they are out there.. or maybe someone who knows off hand will chime in and post.

Maybe you are looking for

  • BI 7.0 Infoset  Document

    Hi Expert, Could anyone can provide good documentation or material related to SAP BI infoset. Thanks, Saran

  • Serial Number. Production Order Confirmation. GR. UD. Sales Delivery

    Hi Gurus, Please help on this issue to get any user exits ..... As part of Serial number management, we have a certain issues on serial number confirmation, goods receipt from production order and quality inspection with UD. Master data: Finished pro

  • Creating fields in a PDF file..

    I downloaded an application from a web site in PDF file form, how do I create fields in the form so I can fill it out? Thanks

  • Specification of user's servlets

    Hi, I am working on tomcat4.1 and the servlets were also working fine.But in an attempt of doing some R&D I changed my server.xml.Now all the servlets in webapps/examples/ are working fine.But if I create a new directory below webapps like c:\jakart1

  • Aperture and Canon 20D

    I am using Aperture with my Canon 20D and I notice that really bright areas in the RAW file have halos in Aperture. And, the quality of the conversions do not seem that great. I am especially put off by the poor sharpening abilty in Aperture. Can any