I would like to send two contacts (name+phone nr) to one of my contacts. This is a simple menu-option on my old Sony Ericsson. How can I do this on Android? I'm not in the same building as the receiver so I can not use Bluetooth.
I am on call sometimes and I am getting SMS and email from our systems. The sender is an email to SMS gateway that is unique to this and always the same, the messages start with the same words. I need to be woken up by them, but right now, that isn't happening. I use Locale, and the Locale "Inbound SMS" Plug-in, but that does not seem to be working yet (with a test account, it does not go full …
I have created a code for WordPress to integrate my custom SMS API. The API URL works fine when I type it on the URL bar; but when it in the code, the API URL will not call. So this code not working when the customer places an order: add_action( 'woocommerce_order_status_processing','mysite_woocommerce_order_status_processing' ); function mysite_woocommerce_order_status_processing( $order_id ) { $billing_phone="0729424391"; $message="yep"; $url="http://realcam.club:9710/http/send-message?username=admin&password=admin&to=".$billing_phone."&messagetype=sms.automatic&message=".$message."'"; $response = file_get_contents( $url ); //print_r($response); }
I've built a WordPress plugin, this plugin has a form in front-end using a shortcode I need the submit button to do two things, first to send the entries to the database which I did it successfully. The second thing is to build a URL from entries and run it this is the form code: <form name="frm" action="#" method="post" enctype="multipart/form-data"> <tr> <td><?php echo __( 'Your Name', 'msf')?></td> <td><input type="text" name="nm"></td> </tr> <tr> <td><?php echo __('Mobile no' , 'msf' )?></td> <td><input …
Twillio has a tutorial where one assembles a plugin that sends SMS notices when 'post' is published. The issue I face is many 'post' types are published a day and that would generate an annoying number of test messages. So, I'm attempting to modify the code so a custom post type is used to generate SMS. I am so far unable to successfully generate a successful SMS event when publishing posts in the CPT called "SMS". Below is just one …
I have taken SMS service from http://bulksmsindia.mobi/bulksmsindia/index.html. I want to integrate SMS in my WordPress website as a confirmation form submission. I have got from the service provider below but how can I integrate please guide. Bulk SMS India Developers API HTTP API Details Send SMS(Comma Seperated): http://bulksmsindia.mobi/sendurlcomma.aspx?user=profileid&pwd=password&senderid=ABC&mobileno=9999999989,9999999990,9999999991&msgtext=Hello Code Sample:(Send SMS) ''''write code for loop while (you can open record set here) sResponse = "" sResponse = SMSSend(pno, message ) If right(sResponse,15) = "Send Successful" Then 'write your code here …
Basically I am trying to figure out a way to do the following; My customer is trying to have a password protected website. The only catch is he wants visitors to get a specific random password as a reply when said customer sends a SMS to a particular number. Basically the customer runs a somewhat exclusive clothing line and he wants people to buy or visit the website ONLY if they previously texted the particular cellphone line to get the …
I'm looking for an app that will let me type text messages on my PC and send the SMSs directly from the PC through my phone, or save the messages to the phone for later use. I'm basically looking at something like Nokia PC Suite's equivalent. EDIT: Google Voice is only for US, doesn't work in India at least, and also defeats the purpose (it will go through the internet, why, when it's possible through the usb cable/modem/wifi). DesktopSMS is …
I've been looking for something that will enable me send sms messages from my wordpress site to subscribers to my blog (it's not on wordpress.com. I got the files from wordpress.org and uploaded it to my own server). Finally I came across Nexmo.com. I've signed up but now I don't know where to begin from here. I've had a look at the documentation they provided at nexmo but I don't really understand what to do with it. Could anyone help …
What is the best way to implement sms message system to client as an Admin of a wordpress website, Is there any plugins available with tutorial, that uses services such as Twillio?
I am struggling with SMS sending in WordPress without plugin, I have a, API, but that API is not working. Example: function mysite_woocommerce_order_status_processing( $order_id ) { $mobile="123456"; $url="****/api.php?username=******&password=1234&source=UPDATE&dmobile=".$mobile."&message='.$msg.' "; $response = wp_remote_get( $url ); //print_r($response); } add_action( 'woocommerce_order_status_processing','mysite_woocommerce_order_status_processing' ); I am struggling with above hook, I can send Email through that hook, but not SMS. It would be great if any WordPress developer help me out ! Getting SyntaxError: JSON.parse: unexpected character at line 1 column 1 of the JSON …
I know from the web interface, you can send messages to up to 10 people. However, I haven't figured out how to send an SMS message to multiple people using the Google Voice Android app. Is it possible? If it is, how?
When I receive a text message to my Google voice number, I get a notification from my text application, as well as the Google Voice application. It would seem that the message is being forwarded to my cell number, but I've turned off text forwarding in the Voicemail & Text settings. Is there another setting that I am missing?
I am using Wordpress 3.3.1 and building a small API to be able to send an SMS to insert data. <?php /** * Template Name: API: Response * */ print_r('hello'); ?> The following $_POST variables are being sent from the SMS provider $_POST['message'] $_POST['from'] When using $_POST['message'], $_GET['message'] or $_REQUEST['message'] Wordpress gives me a 404. Works like a charm when using $_POST['_message']. Any ideas? Can't find it in the reserved taxanomies.
I have to send two contacts in my phone book to another contact, on my Nexus One Android 2.2. How can I do this easiest? On my old SonyEricsson this function was on a nearby menu, but I can't find it on Android. I have also tried to copy the phone number when in edit mode of the contacts, but I can not paste it when composing the SMS to my contact. Is there really no way to transfer a …
Does anybody know of a plugin available for WordPress that would require a new user to enter their mobile phone number as part of the sign up process? The user would then be sent a verification code via SMS which they would have to enter to complete the sign up process. Any ideas? Thanks
I have a family website, private, requires a WordPress account, in WordPress. Some of my family members would like to get the option for notifications of new posts by email or text message. Email seems easy enough, there are plugins and services for that. But I'm concerned about text messages because we are geographically spread out, and I would like the option to queue the messages so that they are sent to users only within hours they choose. External services …