Changes between Version 20 and Version 21 of BluePrint/Messaging
- Timestamp:
- 07/16/09 01:44:11 (15 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
BluePrint/Messaging
v20 v21 34 34 smtplib is required for sending HTML mails (MIME encoded): 35 35 * http://groups.google.com/group/web2py/browse_thread/thread/3d8ed693dd2f29bc 36 * Simple app for sending mails from a form (using smtplib): http://mdp.cti.depaul.edu/appliances/default/show/10 36 37 37 Simple app for sending mails from a form (using smtplib):38 * http:// mdp.cti.depaul.edu/appliances/default/show/1038 There is a Cron job to check the contents of the !OutBox & send pending messages. On Success it moves the message to the 'Sent' table: 39 * http://web2py.com/examples/default/cron 39 40 === SMS === 41 The SMS Daemon to handle Inbound messages is a separate Python script. 42 43 It can distinguish between simple messages (added to the !InBox of the Messaging Module) & those which are encoded in Binary XML (the output of XForms from the J2ME client). 44 45 Q: Do we use Cron to check !OutBox & signal the daemon to send Pending messages? (as for email) 46 47 Toolkits we can base on: 40 48 * RapidSMS (Python-based): http://rapidsms.org 49 * !PySerial: http://pyserial.wiki.sourceforge.net/pySerial 50 * Gammu: http://www.gammu.org (Python-gammu: http://www.gammu.org/wiki/index.php?title=Gammu:Python-gammu) 51 * Gnokii: http://www.gnokii.org (!PyGnokii: http://mobilehacking.org/index.php/PyGnokii) 41 52 * Kannel: http://kannel.org (!PyKannel: http://mobilehacking.org/index.php/PyKannel) 42 53 * SMSTools: http://smstools3.kekekasvi.com 43 * Gnokii: http://www.gnokii.org (!PyGnokii: http://mobilehacking.org/index.php/PyGnokii)44 * Gammu: http://www.gammu.org (Python-gammu: http://www.gammu.org/wiki/index.php?title=Gammu:Python-gammu)45 * !PySerial: http://pyserial.wiki.sourceforge.net/pySerial46 47 Q: How to get SMS daemon running from Webapp?48 * Perhaps this cron example will help:49 * http://groups.google.com/group/web2py/browse_thread/thread/44817da72c798df850 * http://groups.google.com/group/web2py/browse_thread/thread/cfe89bfa9d87bc51 54 ---- 52 55 BluePrints