通过AppleScript通过电子邮件发送文件夹的内容
我正在尝试编写一个AppleScript,该电子邮件通过电子邮件发送指定文件夹的所有文件。只有一个文件时,它可以按预期工作,但有多个文件时,它就不会工作。它只是给我这个错误: "Mail got an error: Can’t make {alias \"Macintosh HD:Users:me:temp_photos:IMG_2902.JPG\", alias \"Macintosh HD:Users:me:temp_photos:IMG_2903.JPG\"} into type file." number -1700 from {alias "Macintosh HD:Users:me:temp_photos:IMG_2902.JPG", alias "Macintosh HD:Users:me:temp_photos:IMG_2903.JPG"} to file 这是我的AppleScript tell application "Finder" set attchList to (every item of TempPhotos) as alias list end tell set theSender to "Me<me@me.me>" set recipName to …