I have a website where a user can send out emails from. I have kind of mimics basic form with:
To: <Text Input>
Subject:<Text Input>
Attachments: <Button> <Text Input>
Body <input text>
I have a list of email address in a database table and it's easy for me to retrieve this. I am trying to find the slickest way to support the following use cases:
- Allow users to send email to everyone in list.
- Allow users to select specific members of group
What would be a good way to do this? Do some code samples exist?
One way I thought of is to mimic Gmail when you can just start typing and it will do an inline search for emails in the list. I guess I would have a separate button to "Select All" users in this case.
That is just one idea. I am open to suggestions.