How to send SMS from website

21 replies
I have a website from which I need to send SMS from my website itself. Please tell me how to do so. Is there a plugin like - [send message] or some other stuff from which I can send message from my website online.
#send #sms #website
  • Profile picture of the author nadeemajeedch
    Originally Posted by devaldcool View Post

    I have a website from which I need to send SMS from my website itself. Please tell me how to do so. Is there a plugin like - [send message] or some other stuff from which I can send message from my website online.
    you need to buy a dedicated server and configure it with any mobile.
    Signature

    Must Visit A ColorFul Website ,
    www.itsmyviews.com

    {{ DiscussionBoard.errors[7834226].message }}
  • Profile picture of the author Andrew H
    You don't need a dedicated server. Twilio offers this service, you need to find a plugin or program something to use their service.

    Twilio Cloud Communications - APIs for Voice, VoIP and Text Messaging
    Signature
    "You shouldn't come here and set yourself up as the resident wizard of oz."
    {{ DiscussionBoard.errors[7834933].message }}
  • Profile picture of the author Andrew H
    Yep thats 100% correct sending a text is just like sending a Email, you can do it with PHP mail(); but you need a list of provider email addresses, once you have it you just do phone#@provider_email_address
    Sending sms message via emails to the carrier is extremely unreliable, a conservative estimate from my experience is that if you send 1k messages at least 200 will not be delivered for a variety of reasons. It costs 1 cent to send a message through Twilio, which is extremely reliable. In the business world you have to live by the mantra - 'you get what you pay for'. If email -> sms messaging worked there would be no reason for companies like Twilio.

    A good answer on SO regarding this:
    http://stackoverflow.com/questions/3...525070#3525070
    Signature
    "You shouldn't come here and set yourself up as the resident wizard of oz."
    {{ DiscussionBoard.errors[7863633].message }}
    • Profile picture of the author kevintb7
      Originally Posted by Andrew H View Post

      Sending sms message via emails to the carrier is extremely unreliable, a conservative estimate from my experience is that if you send 1k messages at least 200 will not be delivered for a variety of reasons. It costs 1 cent to send a message through Twilio, which is extremely reliable. In the business world you have to live by the mantra - 'you get what you pay for'. If email -> sms messaging worked there would be no reason for companies like Twilio.

      A good answer on SO regarding this:
      SMS Gateway for Windows + C# - Stack Overflow
      I have never had an email sms fail. I was using them to send myself and a few others signal notifications for a stock market algorithm. It would send 5-10 messages every 5min and I never had one not send.

      And your second statement is not true, the downfall of the email method is your message comes from a random different number all the time, which can be quite annoying in some situations. I think twilio your messages come from 1 number? That would be the advantage to me.
      {{ DiscussionBoard.errors[7863682].message }}
  • Profile picture of the author Andrew H
    Never use email to sms messaging for critical messaging system. Period. Do a google search to find all the reasons.
    Signature
    "You shouldn't come here and set yourself up as the resident wizard of oz."
    {{ DiscussionBoard.errors[7864319].message }}
    • Profile picture of the author kevintb7
      Originally Posted by Andrew H View Post

      Never use email to sms messaging for critical messaging system. Period. Do a google search to find all the reasons.
      Really depends on what you deem critical.

      And yes you can use phpmail or any other method, i prefer smtp.
      {{ DiscussionBoard.errors[7868146].message }}
    • Profile picture of the author JacobS
      Originally Posted by Andrew H View Post

      Never use email to sms messaging for critical messaging system. Period. Do a google search to find all the reasons.
      I completely agree. When I was testing out the Mediaburst: Free SMS plugin for Wordpress (which uses email to SMS messaging) I found it to be incredibly unreliable. Messages would frequently not be delivered, or they would be delivered several hours later.
      {{ DiscussionBoard.errors[7870033].message }}
  • Profile picture of the author Andrew H
    Oh god. Well if your going to keep it amateur and use the email to sms function, which will surely be phased out by mobile cell phone providers soon, at least use a reliable library to handle your mail.

    http://swiftmailer.org/
    Signature
    "You shouldn't come here and set yourself up as the resident wizard of oz."
    {{ DiscussionBoard.errors[7868177].message }}
    • Profile picture of the author kevintb7
      Originally Posted by Andrew H View Post

      Oh god. Well if your going to keep it amateur and use the email to sms function, which will surely be phased out by mobile cell phone providers soon, at least use a reliable library to handle your mail.

      Powerful component based mailing library for PHP – Swift Mailer
      I dont disagree that sending SMS via email is not the best way to do it. You are absolutely right, it probably is much less reliable than doing it the right way, however, its free. I have a feeling the OP was looking for a free solution, otherwise they should probably pay someone to do it right.

      HOWEVER, as far as sending email in general you are much better off using SMTP as opposed to phpmail (the library you list above appears to use php mail). PHP mail will often end up in spam folders and its far far less secure than SMTP. I would recommend anyone sending email to use raw SMTP over php.

      ^ I suppose this is all my opinion, so if anyone feels that is incorrect please enlighten me. I like to learn.
      {{ DiscussionBoard.errors[7868586].message }}
  • Profile picture of the author juangarciamtl
    try this is a widget
    that you can add in your website
    its completely free and the people that visit your website
    will be able to send sms to any phone
    its international so it doesnt matter the country

    slidesms(dot)com/widget/index.html
    its a very useful tool
    anyway in canada you pay 60 a month and its message unlimited on your
    phone plan but the website is good
    try it and let me know
    if it help you
    Signature

    More than 105 modules , scrapes, post and make money.
    http://autopostingtools.com/

    {{ DiscussionBoard.errors[7868575].message }}
  • Profile picture of the author Andrew H
    the library you list above appears to use php mail
    Swiftmailer is a very robust library. It supports SMTP transport.

    Sending Messages – Documentation – Swift Mailer
    Signature
    "You shouldn't come here and set yourself up as the resident wizard of oz."
    {{ DiscussionBoard.errors[7872337].message }}
  • Profile picture of the author Buzzkill
    go to www.mysms.com to install on PC and get the app for your phone. Syncs with your phone contacts and PC for FREE texting from your PC
    {{ DiscussionBoard.errors[8212079].message }}
  • Profile picture of the author webwizdevelop
    You should buy sms gateway if you want to send sms using your website. It depends on which country you wanna send according to that you have to buy gateway
    {{ DiscussionBoard.errors[8217064].message }}
  • Profile picture of the author szurcsii
    Hi devaldcool!

    If you wish to send sms from a website you will need a php script.
    In the following website you can find a detailed information and example about sending text messages: SMS Gateway - Developers Guide, PHP SMS API

    I hope this can help you.
    {{ DiscussionBoard.errors[9057045].message }}

Trending Topics