AppleScript - 如何访问邮件目录?

AppleScript - How to Access Mail Directory?

我正在尝试使用 Apple 脚本访问邮件中的文件夹。但没有成功。

我的文件夹名称是:BLABLABLA,它位于 Apple Mail 下。

我认为应该是:

set myDir to mailbox "BLABLABLA"

这行不通,有什么建议吗?

这将检索帐户邮箱

tell application "Mail"
    set AccountNames to name of accounts
    choose from list AccountNames with prompt "Select the email account" ¬
    without multiple selections allowed
    set AccountName to result as string
    set MailboxesListV to mailboxes of account AccountName
end tell

这就是我想你想要的。 (注意结果是一个列表。)

希望对您有所帮助。