Ask a Question related to Coldfusion - Advanced Techniques, Design and Development.

  1. #1

    Default multi sms problem

    Can somebody help me with this. I want ot send sms message to multiple users.
    My codes are as follows.

    <cfscript>
    msg = structNew();
    msg.command = "submitmulti";

    msg.destAddresses=arraynew(1);
    msg.destAddresses[1] = "12345678";
    msg.destAddresses[2] = "22222222";

    msg.shortMessage = "Rdm ijdsdxvfe4rh boy";
    ret = sendGatewayMessage("SMS Menu App - 5551212", msg);

    </cfscript>

    sms to single number is works with 'submit' command optioin but 'submitmulti'
    is not working.

    prabin_sh Guest

  2. Similar Questions and Discussions

    1. multi channel video problem
      Does anyone have any experience with broadcasting video from multichannel cards? Flash pro 8 seems to only recognize WDM drivers, which is fine, but...
    2. problem with ppm - looking for MSWin320-x86-multi-thread-5.8
      I am using perl with Windows XP and ActiveState Perl. I downloaded finance-yahooquote.zip, unzipped it which gave me a .ppd and .tar.gz file but...
    3. Implications for a multi lingual, multi curreny e commerce site ??
      Hi I'm about to start wotk on a large e commerce site which is to be multi lingual and support multi currencies. The site needs full content...
    4. Form validation for multi-rows and multi-columns
      Hello All, I have a classical ASP form with multi-rows and multi-columns that allows users to enter multiple records at once. How do you check...
    5. Multi-table search problem
      I have a table with a list of government bids in it. I have a second table with the line items for each bid. I have a third table with...
  3. #2

    Default Re: multi sms problem

    Note: the event gateway forum is probably the better place to post this
    question.

    What is the error? Does your SMSC provider support sumitmulti?

    --
    Tom Jordahl
    Macromedia Server Development

    "prabin_sh" <webforumsuser@macromedia.com> wrote in message
    news:d1jpmj$d4t$1@forums.macromedia.com...
    > Can somebody help me with this. I want ot send sms message to multiple
    users.
    > My codes are as follows.
    >
    > <cfscript>
    > msg = structNew();
    > msg.command = "submitmulti";
    >
    > msg.destAddresses=arraynew(1);
    > msg.destAddresses[1] = "12345678";
    > msg.destAddresses[2] = "22222222";
    >
    > msg.shortMessage = "Rdm ijdsdxvfe4rh boy";
    > ret = sendGatewayMessage("SMS Menu App - 5551212", msg);
    >
    > </cfscript>
    >
    > sms to single number is works with 'submit' command optioin but
    'submitmulti'
    > is not working.
    >

    Tom Jordahl Guest

Posting Permissions

  • You may not post new threads
  • You may post replies
  • You may not post attachments
  • You may not edit your posts

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139