The Cookie Machine - Click here to drag window

DUMMY TEXT - Real text set in assets/js/theCookieMachine.js

If you can read me, I'm broken!

Views: 106,407     Votes:  63     ✅ Solution
Tags: command-line   bash   windows-subsystem-for-linux   sms  
Link: 🔍 See Original Answer on Ask Ubuntu ⧉ 🔗

URL: https://askubuntu.com/q/1104018
Title: How can I send mobile text message from terminal?
ID: /2018/12/23/How-can-I-send-mobile-text-message-from-terminal_
Created: December 23, 2018    Edited:  June 12, 2020
Upload: April 8, 2024    Layout:  post
TOC: false    Navigation:  true    Copy to clipboard:  false


Skip

SMS Texting from Terminal / Shell / Bash

For the following steps open a terminal prompt aka “Command Line Interface” or “CLI”. In most Linux distributions do this using Ctrl+Alt+T

textbelt.com to send text from bash

I found a reddit article: Send an SMS Text Message from the Command Line with this Bash / Terminal command you can use:

curl -X POST https://textbelt.com/text \
   --data-urlencode phone='7801234567' \
   --data-urlencode message='Find Your Phone!' \
   -d key=textbelt

Replace 7801234567 with your phone number. If you are texting an international phone number (outside Canada / USA) follow these instructions.

Note: The software replaces “Find Your Phone!” with a message that you need to purchase a key to use a custom message. But the software still insists you must provide a message that gets overwritten.


Top ToS Skip

Other reasons for sending SMS Text Message from Bash

Finding my smartphone was an unusual need to send an SMS text message from Bash. You might have a few people that should be texted when:


Top ToS Skip

textbelt.com is Free for one text per day

Only one free SMS message a day can be sent by a given sender. Here is an example of the first and second attempts on one day:

$ find-phone # bash script with above command
{"success":true,"textId":"168141545572031481","quotaRemaining":0}

$ find-phone
{"success":false,"error":"Only one test text message is allowed per day.","quotaRemaining":0}

Note: You maybe able to reset your router’s IP address for more than one text per day but I haven’t tested this yet.

You can use prepaid unlimited texts. There are many SMS gateway services available. Pricing at above vendor link varies from $0.03 to $0.15 per text. This is for reference and not an endorsement nor recommendation. Please do your homework and search for reputable pay-for-service vendors at best prices.


Top ToS Skip

Create Bash Script

You could create a bash script called sms containing:

#!/bin/bash
curl -X POST https://textbelt.com/text --data-urlencode phone='$1' --data-urlencode message='$2' -d key=textbelt

Top ToS Skip

Send Email to carrier of the smartphone with SMS Text Message

For the following all you need is a web browser like FireFox, Internet Explorer or Chrome. No need to dive into the “bowels of bash” or limit yourself to one free text per day.

Many carriers allow you to send SMS Text Message to a smartphone by addressing an email to phone_number@mobile_provider_name.com.

Phone Number look up to get carrier’s website address

To get the provider’s website address using the phone number go to: https://freecarrierlookup.com/. Imagine we entered the phone number: 7801234567:

Fee Carrier Lookup.png

We are told the email address to use is 7801234567@pcs.rogers.com. Now send an email to this address and your phone will sound with a notification.

Of course if you have your smartphone configured to sound with a notification when email arrives you can simply email your phone in the first place!

Top ToS Skip

CLI interface for sending email address

In Ask Ubuntu there are many questions and answers on how to send email using bash. I’m using ssmtp (Secure Simple Mail Transport Protocol) for my cron daily backups: Backup Linux configuration, scripts and documents to Gmail

Although this setup is for one user, you can create a file with multiple users to text messages to:

Name         Email Address
Tiny Tim     5551234567@att.com
Mrs. Clause  5552223333@sprint.com
Bad Elf      5551114444@telus.net

Then in your bash code something like this:

ssmtp 5551234567@att.com < mail.txt

Where mail.txt looks like this:

Cc: admin@our_company.com
Subject: Nightly Database Update FAILED
From: root@our_company.com
Content-Type: text/html; charset="utf8"


<html>
<body>
<div style="
    background-color:
    #abcdef; width: 300px;
    height: 300px;
    ">
</div>
Nightly database update failed at procedure: AP005.
</body>
</html>

There are many ways of sending email from bash. This is just one example. The important thing is the email address contains the smartphone number followed by the smartphone provider’s web address

Top ToS
⇧ Search is useless. How can I force it to index my hard drive (2018) Alternative to Dragon NaturallySpeaking?  ⇩