As far as I understand it there are two types of email lists. The first is lists that are available to all users in your domain and the second is email lists that an individual user has access to. You will need to use the Google APIs for the first. The individual user can upload a CSV file in this format. First line contains headers like this Name,E-mail,Notes Each following line has a name, comma, full email address with domain, comma, add notes (optional)
(You can manually create a group in your Google Apps account and export it to see the format) I have a web page where our teachers can log in and download a CSV file of all the kids for any one of their current class sections. They then need to log into their Google Apps account and upload the file. For the lists that are available for all users I have created a simple Java program that reads a tab separated file with username (without domain) tab and email list name Like this # This file should contain a list of usernames followed by a tab and an email list # that the users should be added to. # Comment lines like this one that start with a # are ignored. aaung002 testEmailList aaung002 testList3 george.adams adminList The Java application adds the user to an existing email list and will create the list if it doesn't already exist. I can email the application to you if you request it in an off list email. On Thu, Jan 1, 2009 at 1:48 AM, saurabh <[email protected]> wrote: > > How can I make email lists in bulk, Is there some direct way to do it > such as by uploading some csv.. if not is there any api to do the > same > > Sourabh Modi > > > --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Google Apps APIs" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/google-apps-apis?hl=en -~----------~----~----~----~------~----~------~--~---
