Come esportare la rubrica su mailchimp o file CSV?

2

Voglio esportare gruppi di rubriche specifiche su mailchimp da un computer Mac client.

Il client ha versione OS X Lion (10.7) e il Mac che ha è difettoso e verrà presto rimosso. Pertanto non è fattibile aggiornarlo.

Sarebbe perfetto se potessi usare Chimport ma sembra che io abbia bisogno OS X Mountain Lion utilizza Apple Mac Store per acquistarlo.

Alternative conosci qualche programma che può esportare in CSV?

    
posta Cudos 01.11.2012 - 14:56
fonte

2 risposte

0

Il seguente AppleScript esporterà tutti i nomi e gli indirizzi e-mail da Contacts.app. È stato scritto per OS X 10.9 ma dovrebbe funzionare su edizioni precedenti; potrebbe essere necessario modificare Contacts in Address Book per parlare con l'applicazione appropriata:

Per utilizzare questo AppleScript:

  1. Avvia AppleScript Editor da Applicazioni > Utilità
  2. Copia e incolla il codice seguente in un nuovo documento
  3. Esegui lo script
  4. Al termine verrà visualizzato contacts.csv sul desktop

Esporta contatti in CSV AppleScript

-- Save comma separated values (CSV) file to desktop
set exportPath to (path to desktop as string) & "contacts.csv"

set contactsCSV to "" -- variable to collect rows of addresses
set quoteString to "\"" -- constant to ease concatenation

tell application "Contacts"

    -- Repeat with every person in your Contacts
    repeat with x from 1 to the count of people
        set thePerson to person x
        set theirName to the name of thePerson

        -- A person may have multiple e-mails addresses, add one row for each
        repeat with anEmail in the email of thePerson
            set contactsCSV to contactsCSV & quoteString & theirName & quoteString & "," & quoteString & (value of anEmail) & quoteString & "
"
        end repeat
    end repeat

end tell

-- Write the CSV contents to a file
set exportFile to open for access file exportPath with write permission
set eof of exportFile to 0
write contactsCSV to exportFile starting at eof
close access exportFile
    
risposta data 31.03.2014 - 10:17
fonte
1

Esporta i tuoi contatti come un pacchetto VCARD da Contacts.app e poi importali in una account che supporta il formato VCARD. Una volta in Gmail, puoi esportarli come file.

    
risposta data 24.02.2014 - 02:02
fonte

Leggi altre domande sui tag