所以我制作了一个脚本,允许我复制电子邮件的发件人并将其粘贴到 Numbers 文档中,复制的地址列出了两封不同的电子邮件,我需要删除其中的一封。
tell application "Mail"
set theSenderList to {}
set theMessages to the selected messages of message viewer 0
repeat with aMessage in theMessages
set end of theSenderList to {address of to recipients of aMessage, " OR"}
end repeat
set AppleScript's text item delimiters to " "
set the clipboard to (theSenderList as string)
set AppleScript's text item delimiters to ""
beep
end tell
tell application "Numbers" to tell document 1 to tell sheet 1 to tell table 1
set value of cell "a1" to (the clipboard as text)
end tell
tell application "Numbers" to tell document 1 to tell sheet 1 to tell table 1
set value of cell "b1" to current date
end tell