Skip to content

Instantly share code, notes, and snippets.

@ashkrosh
Created August 6, 2020 18:57
Show Gist options
  • Save ashkrosh/387dae5fac41639d9a1558cfda0a8a70 to your computer and use it in GitHub Desktop.
Save ashkrosh/387dae5fac41639d9a1558cfda0a8a70 to your computer and use it in GitHub Desktop.
Update all email labels in macos contacts to a custom label
-- Pipedrive smart data collection only works on emails labeled as "Work" so I changed all labels to Work.
tell application "Contacts"
activate
set (label of emails of people whose label is not "Work") to "Work"
save
end tell
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment