/user/messageselect.php currently:
- stores the list of users to send a message to in the user session (not bad, not good either)
- has the code require("message.html")
- performs a database request for each user that a message is sent to
/user/message.html hand builds a form without using any of our formslib
It would be good if we could look at:
- rewriting to use formslib
- reduce number of DB reads
- move the actual sending to cron
- ditch message.html