Changes between Version 25 and Version 26 of BluePrint/Messaging


Ignore:
Timestamp:
09/09/09 20:36:30 (16 years ago)
Author:
Fran Boon
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • BluePrint/Messaging

    v25 v26  
    3232 * http://groups.google.com/group/web2py/browse_thread/thread/f6c903f9c67cfe2e
    3333
    34 smtplib is required for sending HTML mails (MIME encoded):
     34There is a Cron job to check the contents of the !OutBox & send pending messages. On Success it moves the message to the 'Sent' table:
     35 * http://web2py.com/examples/default/cron
     36
     37==== Rich Text ====
     38
     39We'd like to be able to send HTML mails for rich-text support (including attachments)
     40This requires the use of smtplib to send MIME-encoded files:
    3541 * http://groups.google.com/group/web2py/browse_thread/thread/3d8ed693dd2f29bc
    3642 * https://web2py.com/wiki/default/page/98b7448f-059a-47f7-82da-dce4728aa4dd
    3743 * Simple app for sending mails from a form (using smtplib): http://web2py.com/appliances/default/show/10
    3844
    39 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:
    40  * http://web2py.com/examples/default/cron
    4145=== SMS ===
    4246The SMS Daemon to handle Inbound messages is a separate Python script.