我正在编写一个脚本来检查是否已提交特定的 Web 表单。
到目前为止的脚本是这样写的:
tell application "Mail"
check for new mail
set newmail to get the unread count of inbox
repeat with msg in newmail
if msg's subject contains "New newsletter built by" then
return msg's subject
end if
end repeat
end tell
我的收件箱中有一封未读的电子邮件供脚本使用,但我仍然收到错误消息:
error "Mail got an error: Can’t make 1 into type specifier." number -1700 from 1 to specifier
任何帮助都将不胜感激。
干杯!