wiki:BluePrint/Messaging

Version 17 (modified by Fran Boon, 16 years ago) ( diff )

Simple app for sending mails from a form (using smtplib)

Blueprint for the Messaging Module

Current design is here:

User Guide:

What we need is:

Q: How to get SMSTools daemon running from Webapp?

tools.py has mail settings:

mail=MailS3()
# These settings should be made configurable as part of the Messaging Module
mail.settings.server='mail:25'
mail.sender='sahana@sahanapy.org'

Can use this to send emails with dynamic data inserted into templates (like HTML pages):

Simple app for sending mails from a form (using smtplib):

T2 supports sending emails:

self.email_server='localhost'
self.email_auth=''
def t2.email(self,sender,to,subject='test',message='test'):

BluePrints

Attachments (1)

Download all attachments as: .zip

Note: See TracWiki for help on using the wiki.