Changes between Version 19 and Version 20 of BluePrint/Messaging
- Timestamp:
- 07/16/09 01:28:21 (15 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
BluePrint/Messaging
v19 v20 24 24 mail.sender='sahana@sahanapy.org' 25 25 }}} 26 & a function: 27 {{{ 28 mail.send(to, subject='None', message='None') 29 }}} 26 30 27 31 Can use this to send emails with dynamic data inserted into templates (like HTML pages): 28 32 * http://groups.google.com/group/web2py/browse_thread/thread/f6c903f9c67cfe2e 29 33 30 Simple app for sending mails from a form (using smtplib):31 * http://mdp.cti.depaul.edu/appliances/default/show/1032 33 34 smtplib is required for sending HTML mails (MIME encoded): 34 35 * http://groups.google.com/group/web2py/browse_thread/thread/3d8ed693dd2f29bc 35 36 36 T2 supports sending emails: 37 {{{ 38 self.email_server='localhost' 39 self.email_auth='' 40 def t2.email(self,sender,to,subject='test',message='test'): 41 }}} 42 37 Simple app for sending mails from a form (using smtplib): 38 * http://mdp.cti.depaul.edu/appliances/default/show/10 43 39 === SMS === 44 40 * RapidSMS (Python-based): http://rapidsms.org