今天给 gpt 提了一个问题
在 macOS 上的邮件,如何在收到邮件时自动触发并识别信用卡账单,解析 eml 内容,输出成 csv 文件
ta 也给出了正确的思路,关键的一步是“在 Apple Mail 里设置规则,当符合特定条件(如邮件来自银行或标题包含“信用卡账单”)时,触发 AppleScript”,但是就是这一步卡了我好久。
on perform_mail_action(theMailMessages)
tell application "Mail"
repeat with eachMessage in theMailMessages
set senderAddress to sender of eachMessage
set subjectLine to subject of eachMessage
-- 只处理来自银行的信用卡账单邮件
if senderAddress contains "[email protected]" and subjectLine contains "信用卡账单" then
set emlFilePath to (POSIX path of (path to desktop)) & "bills/" & subjectLine & ".eml"
-- 确保目录存在
do shell script "mkdir -p " & quoted form of (POSIX path of (path to desktop) & "bills")
-- 导出邮件
save eachMessage in file emlFilePath
end if
end repeat
end tell
end perform_mail_action
但是尝试之后,一直看不到导出邮件。继续追问,ChatGPT 提出可能是访问权限的问题?但是我加入了完整磁盘访问权限之后依旧如故。
只好老办法,一点点打断点日志。发现“on perform_mail_action(theMailMessages)”这个代码块根本进不去,告诉 ChatGPT 之后,ta 却反复让我确认,查看日志是否能够正常输出。无法提出正确的解决方案。此时我已经还是怀疑这个语法是否过时了……
最后在 https://stackoverflow.com/questions/59791464/how-to-trigger-applescript-on-apple-mail-rule 找到可行的办法。
using terms from application "Mail"
on perform mail action with messages caughtMessages for rule catchingRule
repeat with caughtMessage in caughtMessages
try
set mailSubject to subject of caughtMessage
display dialog mailSubject
on error errorString number errorNumber
display dialog errorString
end try
end repeat
end perform mail action with messages
end using terms from
总之,ChatGPT 在处理一些代码上确实太粗糙。
#ChatGPT #macOS #AppleScript
![]() |
1
LanhuaMa 22 天前
训练数据不足导致的,和 gpt 模型小语种降智一个道理。
OP 这个使用场景建议 Gmail API + Python/JS |
![]() |
2
kasusa 22 天前
ai 的幻觉。
ai 写 js 最强了。 |