>
> For users of an app, is there already built in web2py, or are there any 
> examples of a web2py internal mail system such as in LinkedIn or Facebook, 
> where users send messages to each other within the app?
>
You can use the builtin IMAPAdapter to fetch messages filtered by a given 
criteria (i.e. where the subject starts with [something]). A problem: the 
app must collect user mail credentials to connect to the mail service for 
each user session. Actually, no one wants to share such information. A 
simple approach is to have a message table and ajax code to fetch new 
messages. Also consider triggering message updates with the LOAD helper 
timing options.

Also, combined with the first method, you could have web2py use a mail 
server in the same machine without the need for authentication, connecting 
to different accounts for each user session.

-- 

--- 
You received this message because you are subscribed to the Google Groups 
"web2py-users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
For more options, visit https://groups.google.com/groups/opt_out.


Reply via email to