Most viewed recipes tagged "sms"http://code.activestate.com/recipes/tags/sms/views/2015-05-01T19:03:46-07:00ActiveState Code RecipesSend and receive SMS messages using TextMagic (Python)
2015-05-01T19:03:46-07:00Dawie Strausshttp://code.activestate.com/recipes/users/4170915/http://code.activestate.com/recipes/576826-send-and-receive-sms-messages-using-textmagic/
<p style="color: grey">
Python
recipe 576826
by <a href="/recipes/users/4170915/">Dawie Strauss</a>
(<a href="/recipes/tags/api/">api</a>, <a href="/recipes/tags/sms/">sms</a>, <a href="/recipes/tags/smsgateway/">smsgateway</a>).
Revision 12.
</p>
<p><a href="http://www.textmagic.com">TextMagic</a> is a provider of SMS services. Their SMS gateway is accessible via an HTTPS API. A convenient wrapper for this API is <a href="http://pypi.python.org/pypi/PyTextMagicSMS/">PyTextMagicSMS</a>. Full documentation and source code is available on the project's <a href="https://github.com/dfstrauss/textmagic-sms-api-python">website</a>.</p>
<p>In order to use the service, you need to register at <a href="http://www.textmagic.com/" rel="nofollow">http://www.textmagic.com/</a> and obtain an API password (different from your login password) at <a href="https://www.textmagic.com/app/wt/account/api/cmd/password" rel="nofollow">https://www.textmagic.com/app/wt/account/api/cmd/password</a></p>
Tweet your GPS coordinates (Symbian) (Python)
2012-11-27T04:13:29-08:00Timothy Makobuhttp://code.activestate.com/recipes/users/4165901/http://code.activestate.com/recipes/576601-tweet-your-gps-coordinates-symbian/
<p style="color: grey">
Python
recipe 576601
by <a href="/recipes/users/4165901/">Timothy Makobu</a>
(<a href="/recipes/tags/gps/">gps</a>, <a href="/recipes/tags/mobile_development/">mobile_development</a>, <a href="/recipes/tags/pys60/">pys60</a>, <a href="/recipes/tags/sms/">sms</a>, <a href="/recipes/tags/symbian/">symbian</a>).
Revision 10.
</p>
<p>Tweet your GPS coordinates via SMS.</p>
<p>Environment:</p>
<ul>
<li>Phone: Nokia E71</li>
<li>PyS60: 2.0</li>
</ul>
random send mail, sms or popup window (Python)
2013-09-04T19:43:19-07:00peekaahttp://code.activestate.com/recipes/users/2919471/http://code.activestate.com/recipes/578598-random-send-mail-sms-or-popup-window/
<p style="color: grey">
Python
recipe 578598
by <a href="/recipes/users/2919471/">peekaa</a>
(<a href="/recipes/tags/popup/">popup</a>, <a href="/recipes/tags/random/">random</a>, <a href="/recipes/tags/sendmail/">sendmail</a>, <a href="/recipes/tags/sms/">sms</a>).
Revision 4.
</p>
<p>If you need to do something irregularly, randomly during the day, you
often forget. This script gives you mail, sms or popup window indefinitely in
random interval to remind you of doing it. It runs forever. If you want to
send emails, uncomment the row sendMail() and fill variable me, to, smtp,
name, login in function sendMail().</p>