Mac从邮件中提取HTML

时间:2016-06-02 03:22:01

标签: html macos email applescript automator

我正在尝试使用HTML从电子邮件中提取AppleScript。我遇到了这个StackExchange帖子 - range - 它试图从电子邮件内容中提取URL。提取代码是:

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内容。我尝试在with properties {visible:false}之后添加content,然后在input之后添加<form id="search" action="form.html" method="get"> <input type="text" id="keyword" name="search" placeholder="keywords" /> </form> ,但两者都没有运气。

1 个答案:

答案 0 :(得分:1)

您获得了source属性

的原始来源
set end of mailContentList to source of selectedMail

但您必须“手动”提取HTML部分。