我正在尝试使用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>
,但两者都没有运气。
答案 0 :(得分:1)
您获得了source
属性
set end of mailContentList to source of selectedMail
但您必须“手动”提取HTML部分。