2
Mac 용 Outlook 11의 보내는 전자 메일 메시지에 사용할 전자 메일을 작성하여 보낸 사람 주소가 누구인지에 따라 전자 메일 서명을 동적으로 설정하려고합니다. Outlook에 여러 계정이 있으며 사용중인 서명을 기반으로 서명을 변경하고 싶습니다. 아래 코드는 내가 시도했지만, 성공하지 못했다. 어떤 충고?AppleScript를 사용하여 Outlook 11에서 다중 서명 설정
tell application "Microsoft Outlook"
if message sender contains {name:"emailaddress"} then
set the message signature to signature {name:"signaturename"}
else
set the message signature to signature {name:"signaturename2"}
end if
end tell