Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups
Skins
  • Light
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (No Skin)
  • No Skin
Collapse
Code Project
  1. Home
  2. Mobile Development
  3. Mobile
  4. How to send SMS to multiple recipients?

How to send SMS to multiple recipients?

Scheduled Pinned Locked Moved Mobile
jsontutorialquestion
4 Posts 3 Posters 0 Views 1 Watching
  • Oldest to Newest
  • Newest to Oldest
  • Most Votes
Reply
  • Reply as topic
Log in to reply
This topic has been deleted. Only users with topic management privileges can see it.
  • Z Offline
    Z Offline
    Zeng_Zeng
    wrote on last edited by
    #1

    Hi all, How to send SMS to multiple recipients including an award of their own? i can send SMS to one recipient by using API SmsSendMessage now?

    J J 2 Replies Last reply
    0
    • Z Zeng_Zeng

      Hi all, How to send SMS to multiple recipients including an award of their own? i can send SMS to one recipient by using API SmsSendMessage now?

      J Offline
      J Offline
      Joel Ivory Johnson
      wrote on last edited by
      #2

      The SmsMessage class has a property named "To." That property is a collection. You can keep adding recipients to it.

      Joel Ivory Johnson

      Meet my dev team: RDA Architecture Evangelist Team Blog

      My site: J2i.net

      Twitter: J2iNet

      Z 1 Reply Last reply
      0
      • J Joel Ivory Johnson

        The SmsMessage class has a property named "To." That property is a collection. You can keep adding recipients to it.

        Joel Ivory Johnson

        Meet my dev team: RDA Architecture Evangelist Team Blog

        My site: J2i.net

        Twitter: J2iNet

        Z Offline
        Z Offline
        Zeng_Zeng
        wrote on last edited by
        #3

        Thanks for your help, I want to implement it in WIN32 SDK by C++, API SmsSendMessage can send SMS to one recipient successfully, but i do not konw how to send SMS to multiple recipients?

        1 Reply Last reply
        0
        • Z Zeng_Zeng

          Hi all, How to send SMS to multiple recipients including an award of their own? i can send SMS to one recipient by using API SmsSendMessage now?

          J Offline
          J Offline
          Jabbar_espania
          wrote on last edited by
          #4

          SmsMessage sms = new SmsMessage(); sms.Body = “Write your text here .”; sms.To.Add( new Recipient( “”, “123123123” ) ); sms.To.Add( new Recipient( “”, “123123121” ) ); sms.To.Add( new Recipient( “”, “123123123” ) ); sms.To.Add( new Recipient( “”, “123123123” ) ); sms.To.Add( new Recipient( “”, “123132123” ) ); Msg.Send(); I think you can also try that way Hope it will help you

          1 Reply Last reply
          0
          Reply
          • Reply as topic
          Log in to reply
          • Oldest to Newest
          • Newest to Oldest
          • Most Votes


          • Login

          • Don't have an account? Register

          • Login or register to search.
          • First post
            Last post
          0
          • Categories
          • Recent
          • Tags
          • Popular
          • World
          • Users
          • Groups