0
AppleScript
を使用してメールからHTML
を抽出しようとしています。私はこのStackExchangeの投稿を見つけました - Mac Automator/Applescript(?) to extract URL's from Mail messages - 電子メールコンテンツからURLを抽出しようとします。抽出コードである:メールメッセージからHTMLを抽出するMac
on run {input, parameters}
set mailContentList to {}
tell application "Mail"
repeat with selectedMail in input
set end of mailContentList to content of selectedMail
end repeat
end tell
return mailContentList
end run
これはvisible
コンテンツ全体ではなく、HTML
コンテンツを抽出します。私はcontent
の後にwith properties {visible:false}
を追加してみました。input
の後には、どちらからも運がありません。