Apple Mail과 같은 프로그램에서이 (또는) 스크립트를 사용하려면 Automator에서 서비스를 만들 수 있습니다.
시작 자동화 프로그램.
그것이라고 말할 때 문서 유형 선택 , 고르다 서비스 클릭 고르다
상단 대화 상자에서 서비스 받음 입력 없음 ...에서 Mail.app (또는 프로그램 이름 또는 모든 응용 프로그램 그것이 당신이 원하는 것이면).
하나의 작업을 삽입합니다. 유용 그룹, 두 번 클릭 AppleScript 실행 .
다음 텍스트를 선택하십시오.
(* Your script goes here *)
실행할 스크립트에 붙여 넣으십시오. 귀하의 경우 붙여 넣으려는 스크립트는 다음과 같습니다.
tell application "Mail"
set theSelection to selection
set theMessage to item 1 of theSelection
set theSubject to subject of theMessage
tell application "Address Book"
set theGroup to make new group with properties {name:theSubject}
end tell
set theRecipients to to recipients of item 1 of theMessage
repeat with a from 1 to count theRecipients
set theRecipient to item a of theRecipients
tell application "Address Book"
set theName to name of theRecipient
tell application "Mail" to set theAddress to address of theRecipient
set thePerson to make new person with properties {first name:name of theRecipient}
make new email at end of emails of thePerson with properties {value:theAddress}
add thePerson to theGroup
end tell
end repeat
set theRecipients to cc recipients of item 1 of theMessage
repeat with a from 1 to count theRecipients
set theRecipient to item a of theRecipients
tell application "Address Book"
set theName to name of theRecipient
tell application "Mail" to set theAddress to address of theRecipient
set thePerson to make new person with properties {first name:name of theRecipient}
make new email at end of emails of thePerson with properties {value:theAddress}
add thePerson to theGroup
end tell
end repeat
tell application "Address Book" to save
end tell
일단 그렇게하면, 파일 메뉴를 클릭하십시오. 구하다 .
"받는 사람을 그룹에 추가"와 같이 기억할 이름을 서비스에 제공하십시오.
그런 다음 Mail에있을 때 메시지를 선택하고 우편 메뉴 바에서 서비스 메뉴를 선택하고 서비스를 선택하십시오. 그룹에받는 사람 추가 .