Hello All,
I just had an idea of a system that'd send SMS on certain days. For example reminders via SMS for Business meetings etc.
I know this is possible and I wanted to know how and what language is best to use. One thing it has to have is an easy way to set reminders without having to recompile the program and re-ship it out.
If anyone has done this before, can they tell me how?
Thanks in advance.
- BlueShadow<3
- Posts: 40
- Joined: Tue Oct 07, 2014 4:51 pm
- Location: Herefordshire, England
- Contact: Website
Making An Auto SMS System
Shadow<3
Re: Making An Auto SMS System
If you don't want to figure out how to code it yourself you can just use google calendar or some intranet software.
If you wan sysadmin style you can use cron, at, curl, and http://www.text4free.net/personaltool.php
If you wan sysadmin style you can use cron, at, curl, and http://www.text4free.net/personaltool.php
SBC with 32GB RAM: https://hardkernel.com
FAQ : https://raspberrypi.stackexchange.com
Unanswered: https://www.raspberrypi.org/forums/search.php?search_id=unanswered
FAQ : https://raspberrypi.stackexchange.com
Unanswered: https://www.raspberrypi.org/forums/search.php?search_id=unanswered
- BlueShadow<3
- Posts: 40
- Joined: Tue Oct 07, 2014 4:51 pm
- Location: Herefordshire, England
- Contact: Website
- DougieLawson
- Posts: 40594
- Joined: Sun Jun 16, 2013 11:19 pm
- Location: A small cave in deepest darkest Basingstoke, UK
- Contact: Website Twitter
Re: Making An Auto SMS System
For a general purpose calendar try using Roaring Penguin's Remind.elatllat wrote:If you don't want to figure out how to code it yourself you can just use google calendar or some intranet software.
sudo apt-get install remind
You WILL need to read the man page as it is a highly featured calendar system.
Any language using left-hand whitespace for syntax is ridiculous
Any DMs sent on Twitter will be answered next month.
Fake doctors - are all on my foes list.
Any requirement to use a crystal ball or mind reading will result in me ignoring your question.
Any DMs sent on Twitter will be answered next month.
Fake doctors - are all on my foes list.
Any requirement to use a crystal ball or mind reading will result in me ignoring your question.
- BlueShadow<3
- Posts: 40
- Joined: Tue Oct 07, 2014 4:51 pm
- Location: Herefordshire, England
- Contact: Website
Re: Making An Auto SMS System
Just another question, I'm a true noob. What language should I use? I want to make this program available, using PasteBin, I'm no pro at this... Also another thing... It wouldn't cost to send SMS From a Pi, would it? Because it is not a phone. I know nothing is free in this world... Just thought I'd check.DougieLawson wrote:For a general purpose calendar try using Roaring Penguin's Remind.elatllat wrote:If you don't want to figure out how to code it yourself you can just use google calendar or some intranet software.
sudo apt-get install remind
You WILL need to read the man page as it is a highly featured calendar system.
If it does... Can I set it up to send Emails?
Thanks!

Shadow<3
Re: Making An Auto SMS System
If you want send SMS with your Pi you must add a GSM module. This GSM module needs a SIM-card and this card will cost same as your SIM-card in your phone.BlueShadow<3 wrote:It wouldn't cost to send SMS From a Pi, would it? Because it is not a phone.
You should first learn basics

<~~>
- DougieLawson
- Posts: 40594
- Joined: Sun Jun 16, 2013 11:19 pm
- Location: A small cave in deepest darkest Basingstoke, UK
- Contact: Website Twitter
Re: Making An Auto SMS System
The answer to that is a) whatever language you like and b) whatever language has the functions that you need in freely available libraries. The answer for me for "What language?" is S/370 or zSeries assembler (because I like that best) and not python (because I hate languages that add a syntactic value to whitespace). I'll struggle to get S/370 assembler running natively on a Pi.BlueShadow<3 wrote: Just another question, I'm a true noob. What language should I use?
Ultimately it's your choice.
Any language using left-hand whitespace for syntax is ridiculous
Any DMs sent on Twitter will be answered next month.
Fake doctors - are all on my foes list.
Any requirement to use a crystal ball or mind reading will result in me ignoring your question.
Any DMs sent on Twitter will be answered next month.
Fake doctors - are all on my foes list.
Any requirement to use a crystal ball or mind reading will result in me ignoring your question.
- BlueShadow<3
- Posts: 40
- Joined: Tue Oct 07, 2014 4:51 pm
- Location: Herefordshire, England
- Contact: Website
Re: Making An Auto SMS System
What about E-mail?mline wrote:If you want send SMS with your Pi you must add a GSM module. This GSM module needs a SIM-card and this card will cost same as your SIM-card in your phone.BlueShadow<3 wrote:It wouldn't cost to send SMS From a Pi, would it? Because it is not a phone.
Shadow<3
- BlueShadow<3
- Posts: 40
- Joined: Tue Oct 07, 2014 4:51 pm
- Location: Herefordshire, England
- Contact: Website
Re: Making An Auto SMS System
What about LUA?DougieLawson wrote:The answer to that is a) whatever language you like and b) whatever language has the functions that you need in freely available libraries. The answer for me for "What language?" is S/370 or zSeries assembler (because I like that best) and not python (because I hate languages that add a syntactic value to whitespace). I'll struggle to get S/370 assembler running natively on a Pi.BlueShadow<3 wrote: Just another question, I'm a true noob. What language should I use?
Ultimately it's your choice.
Shadow<3
- DougieLawson
- Posts: 40594
- Joined: Sun Jun 16, 2013 11:19 pm
- Location: A small cave in deepest darkest Basingstoke, UK
- Contact: Website Twitter
Re: Making An Auto SMS System
See above ^^^^BlueShadow<3 wrote:What about LUA?Ultimately it's your choice.
For most support from more forum correspondents you'll do best to stick to the most popular language - python (which is a language I dislike because of the python 2.7 vs python 3.2 mess and the syntax requirement (which causes difficult to find bugs in programs)).
I've read the docs for Lua, it's a general purpose interpreted language but I can't think of anything it does that can't be done in other languages.
Any language using left-hand whitespace for syntax is ridiculous
Any DMs sent on Twitter will be answered next month.
Fake doctors - are all on my foes list.
Any requirement to use a crystal ball or mind reading will result in me ignoring your question.
Any DMs sent on Twitter will be answered next month.
Fake doctors - are all on my foes list.
Any requirement to use a crystal ball or mind reading will result in me ignoring your question.
- BlueShadow<3
- Posts: 40
- Joined: Tue Oct 07, 2014 4:51 pm
- Location: Herefordshire, England
- Contact: Website
Re: Making An Auto SMS System
DougieLawson wrote:See above ^^^^BlueShadow<3 wrote:What about LUA?Ultimately it's your choice.
For most support from more forum correspondents you'll do best to stick to the most popular language - python (which is a language I dislike because of the python 2.7 vs python 3.2 mess and the syntax requirement (which causes difficult to find bugs in programs)).
I've read the docs for Lua, it's a general purpose interpreted language but I can't think of anything it does that can't be done in other languages.
So because I only know a little LUA. I can use it? Because I like LUA...
Shadow<3
Re: Making An Auto SMS System
Just try it !BlueShadow<3 wrote:
So because I only know a little LUA. I can use it? Because I like LUA...
I cant think of any reason it wont work , but i didnt think all that mutch + i might think at a leisurely pace!
Real life is, to most, a long second-best, a perpetual compromise between the ideal and the possible.
-
Meanwhile, the sysadmin who accidentally nuked the data reckons "its best not run anything more with sudo today"
-
what about spike milligan?
-
Meanwhile, the sysadmin who accidentally nuked the data reckons "its best not run anything more with sudo today"
-
what about spike milligan?
- BlueShadow<3
- Posts: 40
- Joined: Tue Oct 07, 2014 4:51 pm
- Location: Herefordshire, England
- Contact: Website
Re: Making An Auto SMS System
Do you think E-mail will work with it?r3d4 wrote:Just try it !BlueShadow<3 wrote:
So because I only know a little LUA. I can use it? Because I like LUA...
I cant think of any reason it wont work , but i didnt think all that mutch + i might think at a leisurely pace!
Shadow<3
Re: Making An Auto SMS System
IMAP or pop
I think you should try it and find out

I think you should try it and find out

Real life is, to most, a long second-best, a perpetual compromise between the ideal and the possible.
-
Meanwhile, the sysadmin who accidentally nuked the data reckons "its best not run anything more with sudo today"
-
what about spike milligan?
-
Meanwhile, the sysadmin who accidentally nuked the data reckons "its best not run anything more with sudo today"
-
what about spike milligan?
- BlueShadow<3
- Posts: 40
- Joined: Tue Oct 07, 2014 4:51 pm
- Location: Herefordshire, England
- Contact: Website
- default_user8
- Posts: 680
- Joined: Mon Nov 18, 2013 3:11 am
Re: Making An Auto SMS System
Don't know how it is in the UK, but in the US you can send SMS via email. You should check with your cellular provider. Of course you could do all that with a gmail account and gmail calendar which would cut out the raspi completely. And what fun would that be?
Two heads are better than one, unless one's a goat head.
Re: Making An Auto SMS System
I use http://www.textlocal.com/
A bit of python to talk to their API and you're on your way. My pi sends me an SMS when it detects motion on the camera. I can also send it an SMS to turn on electrical equipment via my pi-mote http://www.raspberrypi.org/controlling- ... e-pi-mote/
A bit of python to talk to their API and you're on your way. My pi sends me an SMS when it detects motion on the camera. I can also send it an SMS to turn on electrical equipment via my pi-mote http://www.raspberrypi.org/controlling- ... e-pi-mote/
- BlueShadow<3
- Posts: 40
- Joined: Tue Oct 07, 2014 4:51 pm
- Location: Herefordshire, England
- Contact: Website
Re: Making An Auto SMS System
I wanted to make a program with a GUI that I can set up events that'll be stored in a spreadsheet. The pi will read the sheet. Then email the contents of a column named "Description" to certain people. Their E-mail address will be in the BCC line so nobody can get their email. It would be easy to add/remove email addresses and events. That's my vision. The only thing restricting me is my Noobynessdefault_user8 wrote:Don't know how it is in the UK, but in the US you can send SMS via email. You should check with your cellular provider. Of course you could do all that with a gmail account and gmail calendar which would cut out the raspi completely. And what fun would that be?
Shadow<3
- BlueShadow<3
- Posts: 40
- Joined: Tue Oct 07, 2014 4:51 pm
- Location: Herefordshire, England
- Contact: Website
Re: Making An Auto SMS System
So this WILL work?nick9000 wrote:I use http://www.textlocal.com/
A bit of python to talk to their API and you're on your way. My pi sends me an SMS when it detects motion on the camera. I can also send it an SMS to turn on electrical equipment via my pi-mote http://www.raspberrypi.org/controlling- ... e-pi-mote/
Shadow<3
- BlueShadow<3
- Posts: 40
- Joined: Tue Oct 07, 2014 4:51 pm
- Location: Herefordshire, England
- Contact: Website
Re: Making An Auto SMS System
Can someone edit this so it will use E-mail instead of SMS? http://www.textlocal.com/simple-developer-sms-apiBlueShadow<3 wrote:I wanted to make a program with a GUI that I can set up events that'll be stored in a spreadsheet. The pi will read the sheet. Then email the contents of a column named "Description" to certain people. Their E-mail address will be in the BCC line so nobody can get their email. It would be easy to add/remove email addresses and events. That's my vision. The only thing restricting me is my Noobynessdefault_user8 wrote:Don't know how it is in the UK, but in the US you can send SMS via email. You should check with your cellular provider. Of course you could do all that with a gmail account and gmail calendar which would cut out the raspi completely. And what fun would that be?
Shadow<3
- Jednorozec
- Posts: 809
- Joined: Sun Nov 24, 2013 2:17 pm
- Location: Deposit, NY
Re: Making An Auto SMS System
Maybe you'd like someone to do the entire project for you.BlueShadow<3 wrote:Can someone edit this so it will use E-mail instead of SMS? http://www.textlocal.com/simple-developer-sms-api

The most important leg of a three legged stool is the one that's missing.
It's called thinking. Why don't you try it sometime?
It's called thinking. Why don't you try it sometime?
- BlueShadow<3
- Posts: 40
- Joined: Tue Oct 07, 2014 4:51 pm
- Location: Herefordshire, England
- Contact: Website
Re: Making An Auto SMS System
I'm just a noob, I need someone to show me the ropes. That's all!Jednorozec wrote:Maybe you'd like someone to do the entire project for you.BlueShadow<3 wrote:Can someone edit this so it will use E-mail instead of SMS? http://www.textlocal.com/simple-developer-sms-api
Shadow<3
Re: Making An Auto SMS System

Brian wrote:Education isn't everything; for a start it isn't an elephant.