特定の 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
どんな助けでも大歓迎です。
乾杯!