Can you send a text (sms) message from a web site form ?

Anyone know of a reliable script or app that will allow a site visitor to fill out a 'form' and send an instant text message from the site ?  Same as email...but rather than email...type out and send a text message instead ?
Thanks, Tim

Tecnically yes. This is because SMS is basically handled just like an email address, ie; [email protected]
There are services out there that will charge you either flat rate or per message to send them for you as you would need to know what server that number is on. If you want to have people select what carrier that number is on, you just create a mail form with a dropdown with a list of carriers that then set the domain variable in the TO address field. You have to plan that the user doesn't know what carrier that phone number is on, thus where the pay-for sites come in handy.

Similar Messages

  • I can neither send nor reply to messages from my iPhone 4.  It may be since I downloaded iOS 6.0 but not sure.

    I can neither send nor reply to messages from my iPhone 4.  It may be since I downloaded iOS 6.0 but not sure.  Any suggestions?

    No, sorry, I meant emails.  I can no longer compose emails or reply to emails on my iPhone -- only receive them.  Any idea why?  Thank you!

  • Can you send/export a still frame from an FCP sequence?

    Can you send/export a still frame from FCP as a picture to the desktop? Doesn't matter if it is a .jpeg, .tiff, . bitmap
    G5 Mac OS X (10.4.8) Dual 1.8

    serach the forum for any of the hundreds of posts detailing this process -
    my personal favorite is shift-N, apple-9, type name, drag to bin, batch export.
    The best thing about the batch export queue is you can set up a batch with the file format and destination folder and then keep adding new clips/stills to export.
    Hope this helps -
    Max Average

  • How do I send a text using messages from my macbook to an iPhone phone?

    How do I send a text using messages from my macbook to an iPhone ?

    I tried to send it to their phone number, but it said they were offline.  And they downloaded iMessage for the iPhone but it still wasn't sending from my computer.  Is there some kind of trick?

  • Send and Receive SMS messages from US to South Kor...

    I want to be able to receive and send SMS messages from my skype to my friend's cell phone in Korea
    When I send it they receive it, but they can't respond it back to me because it is an international text.
    Is there anyway that I can buy a Korean online number when I'm living in US?
    and with that number will I be able to talk and send/receive messages with my friend?

    @ sberman -Hi-I have my settings as you described and I do have a text msg. plan with At&T. I'm still puzzled, however; I had the same plan with he former phone-the ancient 3Gs and with it, I was able to send/receive text, photos, etc. to non-Iphone users via WiFi as long as I was home and within distance of the connection. I did not have to have my cell data "on" in order to send/receive anything. Everything transmitted through WiFi-and did not impact my  charges or cell data limits.. I know I must use the cell data ON when I'm away, but don't understand why/how I can't do the same as before I upgraded to the 5c. Admittedly, I am certainly NOT in the stratospheric league as so many phone experts here-I do make the attempt to understand, though..
    I read on one of the numerous help/answer sites that apparently someone else had registered the same complaint with Apple and now has a pending lawsuit-and hoping to get class-action status on the issue. I'm fairly sure this is the same-although I cannot be 100% certain given my lack of expertise.
    I certainly appreciate your rapid response-as a newbie to these communities, I didn't expect any answers to my questions so quickly.Thanks for taking the time to post-have a great weekend.

  • How many contacts can you send a text to?

    I cannot send a text to more than 10 contacts. How can I bypass this?

    Send multiple text messages. If you really want mass group texting and to greatly irritate everyone, use Facebook Messenger.

  • Can we send a tcp/ip message from a specific port to the client

    Hi All,
    Iam currently trying to send a tcp/ip message to a remote machine on a specific destination port. For each tcp/ip message that iam sending iam able to figure out that the source port varies each time. So I wanted to know if it is possible to maintain a source
    port for sending a tcp/ip message just like a destination Port. You can see my code below for reference:
     TcpClient client = new TcpClient();          
                client.Connect("xxx.xxx.xx.xx", 2024);
                NetworkStream clientStream = client.GetStream();
                ulong refno = GetSessionID();
                DateTime dt = DateTime.Now;
                string str = dt.Year.ToString() + "-" + dt.Month.ToString() + "-" + dt.Day.ToString() + " " + dt.Hour.ToString() + ":" + dt.Minute.ToString() +
    ":00";
                ASCIIEncoding encoder = new ASCIIEncoding();
                string Input2 = "<STX>Inquire<US>REF=203.163.253.55<US>RQN=" + refno.ToString() + "<US>DTE=" + str + "<US>ACI=5274<US>ACE=C<US>ACS=A<ETX>";
                string Input3 = "<STX>Inquire<US>REF=203.163.253.55<US>RQN=" + refno.ToString() + "<US>DTE=" + str + "<US>ACI=5274<US>ACE=C<US>ACS=A<ETX><CHECKSUM>";
                int length = Input2.Length;
                string hexValue = Input2.Length.ToString("X");
                string hexValue2 = length.ToString("X");
             //   string Input = "\x02 Inquire\x1F REF=203.163.253.55\x1F RQN=" + refno.ToString() + "\x1F DTE=" + str + "\x1F ACI=5274\x1F ACE=C\x1F ACS=A\x1F \x3 \\x" + hexValue2;
                string Input = "02Inquire1FREF=203.163.253.551FRQN=" + refno.ToString() + "1FDTE=" + str + "1FACI=52741FACE=C1FACS=A1F3" + hexValue2;
                byte[] buffer = encoder.GetBytes(Input);
                clientStream.Write(buffer, 0, buffer.Length);
                clientStream.Flush();
    ram

    Hi ram,
    The TcpClient class has a constructor that receives an IPEndPoint instance, this is the local EndPoint.
    The IPEndPoint consists of two parts, the IP address and the port to use. you can specify the local port with this parameter.
    IPAddress ipAddress = Dns.GetHostEntry (Dns.GetHostName ()).AddressList[0];
    int port=9999;
    IPEndPoint ipLocalEndPoint = new IPEndPoint(ipAddress, port);
    TcpClient tcpClientA = new TcpClient (ipLocalEndPoint);
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • How can I send and receive a message from  a queue using standalone program

    Hi,
    I want to write a standalone Java program which has to post a message to a queue and receive a message from a queue thats specified as a replyto queue.I want to have my application to be completely standalone without the need of a Application server.What all the Jars do I need to include in the application.My aim is to have the application standalone and portable so that the application runs on any machine that has a JRE.
    Thanks in advance,
    Prathima

    Hi,
    You can get quite simple standalone MQ Java programs from this site http://www.capitalware.biz/mq_code_java.html.
    Also regarding the jars required for your application depends on the API being used. If you use MQI API few jars are required and if you decide to use JMS API you'll require few other jars. But you got to either install Websphere MQ Java Client, which will copy the jars to the respective location, or you can choose to copy the jars from some other machine manually.
    Eventually, all the jars related to MQI and JMS API will reside under /usr/mqm/java/lib/ or /var/mqm/java/lib/ UNIX Environment. And in case of WINTEL, you should find the jars under C:\Program Files\IBM\WebSphere MQ\Java\lib.
    Trust it clarifies...
    Naren

  • I can't send a text using imessage from my iphone to an ipad

    I can't send or receive a text using imessage from my iphone to an ipad

    The Ipdas are using IOS 6 and can text to other iphones by phone number or apple id. I have tried hard resets and did a full restore and still no success. I am using IOS 6.0.1 and have had the phone checked at our local Apple dealer and I took it to the local ATT store to be sure my phone plan was not an issue.

  • HT3529 how can you back up old sms messages?

    How can I back up or send a copy of a long history of sms messages to an email address?

    Try the computer apps PhoneView (Mac) or TouchCopy (Mac & PC):
    http://www.ecamm.com/mac/phoneview/
    http://www.wideanglesoftware.com/touchcopy/index.php

  • Can you restore a deleted IM message from an ipod touch?

    Hello, my daughter has received some bullying text on her ipod via Skype IM chat which she has deleted but I now need to show them to the school.
    Does anyone know if it is possible to retrieve deleted IM messages from the ipod (4th gen)? I have checked my PC to see if Skype has 'sync and stored it' but it hasn't. Many thanks.

    Check this post about it:  Re: i want to move my voice memo to my pc
    Allan Sampson Central Texas
    Re: i want to move my voice memo to my pc 
    08.11.2011 13:35 (in response to louciana)
    Under the Music tab for your iPhone sync preferences with iTunes, select Include Voice Memos followed by selecting Apply and a sync.  An iTunes playlist will be created where your voice memos will be available on your computer and any new voice memos will be transferred to your iTunes library automatically when syncing.

  • How can i send the chinese sms using java J2EE(web application)

    hi,
    i have the difficulty on sending chinese sms using J2EE application.i try to input the chinese word to jsp and send the plain text sms. i received the sms with plenty of question mark "?????". i think it is regarding to the conversion of String to some kind of format that supported by mobile phone. below are some code the send the sms to recipient. i need someone help in order to have the solution.
    thanks a lot
    <%@ page language="java" contentType="text/html; charset=utf-8" pageEncoding="utf-8"%>
    <%@ page import="se.sapio.rta.service.MPMService"%>
    <%@ page import="java.util.Locale"%>
    <%
         Locale.setDefault(Locale.UK);
         Context ctx;
         MPMService mpmservice;
         ctx = new InitialContext();
         mpmservice = (MPMService) ctx.lookup("BC/Service/RTAMPM");
         LSUser user = null;
         boolean ok = true;
         try {
         if (ok) {
              String sender = request.getParameter("sender");
              String phonenr = request.getParameter("phonenr");
              String sendmsg = request.getParameter("sendmsg");
              if(bError) {
                   byte[] bytes = message.getBytes("UTF-8");
                   message = mobileclientservice.ByteEncode(bytes);          
                   response.sendRedirect("send_sms.jsp?s="+request.getParameter("s")+"&msg="+message+"&phonenr="+request.getParameter("phonenr").replaceAll("\\+","%2B")+"&sender="+request.getParameter("sender")+"&sendmsg="+request.getParameter("sendmsg").replaceAll("\\+","%2B"));
              String resp = "";
              if(mpmservice.sendPlainTextSMS(sender, phonenr, sendmsg)) {
                   resp=mpmservice.getLang(user.getLang(), "sms_sent");
              } else {
                   resp=mpmservice.getLang(user.getLang(), "sms_not_sent");
              } %>
              <jsp:include page="/top.jsp" />
              <p class="headline"><%=mpmservice.getLang(user.getLang(), "send_sms_title")%></p>
              <form name="operatordetails" id="operatordetails" method="post" action="send_sms.jsp">
              <INPUT TYPE=hidden NAME=s VALUE="<%=request.getParameter("s")%>">
              <INPUT TYPE=hidden NAME=phonenr VALUE="<%=request.getParameter("phonenr")%>">
              <table class="infotable" id="report">
                   <tr>
                        <td class="left" colspan="2"><%=resp%></td>
                        <td class="right"></td>
                   </tr>
                   <tr>
                        <td class="left" colspan="2">
                             <input class="halfmiddle" name="Back" type="submit" id="Back" value="<%=mpmservice.getLang(user.getLang(), "back")%>" />
                        </td>     
                        <td class="right"> </td>
                   </tr>
              </table>
              </form>
              <jsp:include page="/bottom.jsp" />
         <% } %>
       public boolean sendPlainTextSMS(String sender, String recipient, String sendmsg){
             if(recipient.charAt(0) == '+')
                   recipient = recipient.substring(1);
             String senderIdType = "Alpha";
              if( (sender.charAt(0) >= '0' && sender.charAt(0) <= '9') || sender.charAt(0) == '+')
                   senderIdType = "Numeric";
                   if(sender.charAt(0) == '+')
                        sender = sender.substring(1);
                   for(int i=0; i < sender.length(); i++)
                        if(!(sender.charAt(i) >= '0' && sender.charAt(i) <= '9'))
                             senderIdType = "Alpha";
             log.warn("sending sms to: "+recipient + " sendtype: " + senderIdType + " msg: "+ sendmsg);
             log.warn("Encoded sms:"+Encode(sendmsg));
             try{
             String postData = "XMLDATA=" + URLEncoder.encode("<?xml version=\"1.0\" encoding=\"ISO-8859-1\" ?>\r\n" +
                        "<NotificationRequest Version=\"3.4\">\r\n" +
                        "     <NotificationHeader>\r\n" +
                        "          <PartnerName>" + SMS_PARTNER_NAME + "</PartnerName>\r\n" +
                        "          <PartnerPassword>" + SMS_PARTNER_PASSWORD + "</PartnerPassword>\r\n" +
                        "          <SubscriptionName>XML</SubscriptionName>\r\n" +
                        "     </NotificationHeader>\r\n" +
                        "     <NotificationList BatchID=\"1\">\r\n" +
                        "          <Notification SequenceNumber=\"0\" MessageType=\"SMS\">\r\n" +
                        "          <Message>" + Encode(sendmsg) + "</Message>\r\n" +
                        "          <Profile>" + SMS_PARTNER_PROFILE + "</Profile>\r\n" +
                        "          <SenderID Type=\"" + senderIdType + "\">" + sender + "</SenderID>\r\n" +
                        "          <Subscriber>\r\n" +
                        "               <SubscriberNumber>" + recipient + "</SubscriberNumber>\r\n" +
                        "          </Subscriber>\r\n" +
                        "      </Notification>\r\n" +
                        " </NotificationList>\r\n" +
                        "</NotificationRequest>","ISO-8859-1");
      appreciate for anyone provide the solution.
    thanks a lot

    Hi,
    I want to send sms from web application to mobile phones at the time of registration. Its verymuch greatful to me, if you let me know, how to send from jsp to mobile. because from your post, i got, you already know about sending sms from jsp to mobile.
    please let me know, how to send sms
    [email protected]
    Thanks in advance for your kind help

  • Safari "can't connect to the server" message for certain web sites

    I recently decided to upgrade my mid-2007 macbook with another GB of memory and then installed snow leopard so that I could run google chrome. While this made my computer run much faster, I am no longer able to connect to certain sites I visit frequently, such as facebook and craigslist. This started when I began using chrome, right after I installed snow leopard, so I attempted to use safari instead, but it will not let me visit these two sites either. Then I tried running firefox and flock, which still won't let me visit the sites.
    While the problem began with chrome, I couldn't find any google support articles to solve it. I have explored other threads with similar problems in this forum, but each of them seem to have been able to visit the sites in another browser. I went into each browser and deleted cookies, history, and everything, then uninstalled all browsers and reinstalled safari from the mac os x disc, and I am still unable to visit the sites. I don't have a clue what might be blocking these sites in all browsers.

    I apologize for the delay. I took my macbook to the genius bar, and they fixed the issue by deleting some files from the old OS (though I unfortunately don't know how they did this as a manager in the back room took care of it). I still couldn't visit sites using Java as they said Java had somehow installed incorrectly and I would need to reinstall the OS once again to fix this. I continued to use my machine without trying to fix the Java issue for a few weeks. However, without reinstalling the OS, the exact problem has started again. Yesterday I reinstalled OSX 10.6.3 in order to fix the Java issue, hoping it would fix everything, but Java still isn't working, and I still can't visit certain web sites.
    I have added those two DNS servers, but that did not solve the issue.
    Any advice on how to 1) fix Java and 2) delete the old OS files? I have run all software updates with no luck.

  • Virus Message from a web site

    Greetings,
    This evening I went to the Huffington Post web site and got this error message,
    "Warning!!! Your computer contains various signs of viruses and malware programs presence.
    Your system requires immediate anti viruses check! Antivirus 360 will perform a quick and free scanning of your PC for viruses and malicious programs."
    I copied and pasted the message then I clicked the cancel button. I restarted my computer. Should I be worried?
    SUsan

    HI Susan,
    Don't worry, it's a scan as QTKirk said. There are no known Mac virus. They are trying to sell you anti-virus software.
    No worries!
    Carolyn

  • Can you send txt messages (SMS) from computer to iPad

    Can you send a text message (SMS) from MacBook Pro to the ipad 2?

    Even when an Ipad has a 3G cellular modem with a microsim of nanosim card with cellular number - still it can NOT receive a SMS text message shipped to the cellular number.
    I can confirm this for an iPad Mini with iOS 6.1 - SMS text messaging is NOT supported.

Maybe you are looking for

  • Invoke and Execute Unix command from Oracle PL/SQL

    Dear All, I am currently working in the development of multi user application in ORACLE. My problem is, I have to remove a temporary file created in unix server when a particular condition is satisfied in a PL/SQL proccedure. I searched for this and

  • Not allow to save the billing document in the back date if FI period closed

    Hi , We have a requirment in which end user should not be able to create the billing document if the billing date lies in FI posting period which has been closed. As of now the users are being able to create the billing documents even if the Billing

  • [Solved]Slow samba mount of Windows 8

    I'm trying to mount a samba share of a windows 8 machine.  Connection works and I can mount it, but it rather slow.  The wiki page suggests adding vers= to the options, and the man page for mount.cifs says that windows 8 is 3.0.  However I get an err

  • Arabic font from photoshop to FCP

    I've got Arabic fonts on Adobe Photoshop and would like to use them to type then transfer the image to FCP. Except when i type in Photoshop, it types in English instead of Arabic. Although the font selected is in Arabic. Help please.

  • Map Thinkpad Mouse Buttons to Keyboard Key

    Peace all! Does anyone know of a way to map the thinkpad mouse buttons to a normal keyboard key? I am unable to identify any mappable keycode using xev. Is it hardwired or something? ButtonPress event, serial 34, synthetic NO, window 0x4600001,     r