sending an SMS message

Ask a Question related to PERL Modules, Design and Development.

  1. #1

    Default sending an SMS message

    I'm pretty lost: I want to write a simple (???) program to send off an SMS
    message.. no ring tones or embedded pictures... just an app that'll replace
    our current 'alerter' [that sends off pages] and take a phone # and a
    message and fire of that message to that cell phone.

    I checked CPAN and was stunned to find >200 modules that have something to
    do with SMS'ing. I was looking at NET-SMS and it looked simple enough
    [something like an 8 line program to send a text message], but I'm utterly
    befuddled by it all [and indeed, that's in no small part because I haven't
    a *clue* how text messaging works at all, much less doing it over the
    Internet instead of from a cell phone].

    Has anyone managed to get something like this working and would be willing
    to share some wisdom/info about what's going on? THANKS!!

    /Bernie\

    --
    Bernie Cosell Fantasy Farm Fibers
    [email]bernie@fantasyfarm.com[/email] Pearisburg, VA
    --> Too many people, too few sheep <--
    Bernie Cosell Guest

  2. Similar Questions and Discussions

    1. Sending a CDO.Message with high importance?
      Okay... Thought I'd try to move away from CDONTS to CDOSYS. The one thing that's still a puzzle is how to send a CDO.Message so that it shows up...
    2. Error Message When Sending Message In Windows Mail
      Am I the only one getting an error message when replying to a posted message using Windows Mail. Every time I send a message I get a popup error...
    3. blank message sending help!
      I been trying to stop blank messages being sent to my server with out any luck can anyone help please?? FCChatClass.prototype.sendMessage =...
    4. sending XML message to webservice problem
      I have a customer who wants to send us a XML message like this: <?xml version="1.0" encoding="UTF-8"?> <SOAP-ENV:Envelope...
    5. Message not sending.. but why!?
      Hey all, I am experiencing this really bizzard problem with CDO and W2K. I have the following code in ASP: Dim objCDO set objCDO =...
  3. #2

    Default Re: sending an SMS message

    Bernie Cosell <bernie@fantasyfarm.com> said:
    >I'm pretty lost: I want to write a simple (???) program to send off an
    >SMS message..
    >[and indeed, that's in no small part because I haven't a *clue* how
    >text messaging works at all, much less doing it over the Internet
    >instead of from a cell phone].
    I make an assumption on using GSM network technology. The core issue
    is that you should get the message delivered to the SMSC (SMS Center)
    of the desired operator (operator of the GSM subscription to which
    you want to send the message). SMSes tend to cost some money apiece,
    so there typically isn't any direct public internet interface through
    which to send SMSes. Mobile operators typically offer (as a business
    service) some kind of interface to the SMSC, charging at least by
    month, and I think by message as well. If the target is to send just
    a few SMSes per month, this rapidly becomes too expensive (especially
    if there's more than one destination operator).

    The easiest (and most economical) option in most cases should be to
    hook up a mobile handset to the computer sending the messages, and
    find out about the interface on the mobile to use to send off SMSes.
    For fault-tolerance use two of these, hooked up to networks of two
    independent operators.

    Note though that there's no delivery guarantee for SMSes.
    --
    Wolf a.k.a. Juha Laiho Espoo, Finland
    (GC 3.0) GIT d- s+: a C++ ULSH++++$ P++@ L+++ E- W+$@ N++ !K w !O !M V
    PS(+) PE Y+ PGP(+) t- 5 !X R !tv b+ !DI D G e+ h---- r+++ y++++
    "...cancel my subscription to the resurrection!" (Jim Morrison)
    Juha Laiho Guest

  4. #3

    Default Re: sending an SMS message

    Juha Laiho <Juha.Laiho@iki.fi> wrote in news:dl59ri$vl7$1@ichaos.ichaos-
    int:
    > Bernie Cosell <bernie@fantasyfarm.com> said:
    >>I'm pretty lost: I want to write a simple (???) program to send off an
    >>SMS message..
    >
    >>[and indeed, that's in no small part because I haven't a *clue* how
    >>text messaging works at all, much less doing it over the Internet
    >>instead of from a cell phone].
    >
    > I make an assumption on using GSM network technology. The core issue
    > is that you should get the message delivered to the SMSC (SMS Center)
    > of the desired operator (operator of the GSM subscription to which
    > you want to send the message). SMSes tend to cost some money apiece,
    > so there typically isn't any direct public internet interface through
    > which to send SMSes.
    My provider allows me to set up an email address for my cell phone.
    Emails sent to that address come to my cellphone as SMS. I do not know
    how prevelant this feature is, but it is something to look into.

    Sinan

    --
    A. Sinan Unur <1usa@llenroc.ude.invalid>
    (reverse each component and remove .invalid for email address)

    comp.lang.perl.misc guidelines on the WWW:
    [url]http://mail.augustmail.com/~tadmc/clpmisc/clpmisc_guidelines.html[/url]

    A. Sinan Unur Guest

  5. #4

    Default Re: sending an SMS message

    Bernie Cosell wrote:
    > I'm pretty lost: I want to write a simple (???) program to send off an SMS
    > message.. no ring tones or embedded pictures...
    For a simple application like that, you should connect
    a gsm cell phone or gsm modem to your computer.

    Then, using Device::Gsm module on CPAN, you can send
    sms text messages with simple test scripts included in
    the module distribution.

    Installation requires (as documented):

    * Device::Modem
    * Device::SerialPort

    Good luck!

    --
    Cosimo
    Cosimo 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