apps
, home-automation
, text-message
I need to use my phone (dumb, no internet capability) to 'ping' me a certain number of times per day. The alarm function will not work for this. This is a reminder to myself to do pushups throughout the day. Is there a way to generate, for example, 5 of the same text message and have it sent to my phone at 5 random times of day?
I also need to set a minimum time between messages, so two of them are not too close together. (i.e., I would have time to physically recover from the exercise).
You can use Windows Power Shell
The code below came from here
$emailFrom = "user@yourdomain.com"
$emailTo = "user@yourdomain.com"
$subject = "your subject"
$body = "your body"
$smtpServer = "your smtp server"
$smtp = new-object Net.Mail.SmtpClient($smtpServer)
$smtp.Send($emailFrom, $emailTo, $subject, $body)
This link describes what you need to do to enable the code for scheduling Here
Then you just use Windows scheduler. To schedule the script.
Google Calendar supports SMS based notifications. You can't set them to be random, but you could setup daily recurring events that send an SMS notification to you. If you want them to be at different times you could setup multiple weekly recurring events so that each day has a different schedule.
You can use an e-mail to SMS gateway, to send SMS text messages to your phone. Now, you just need a script that sends those e-mails to the gateway.
All content is licensed under CC BY-SA 3.0.