我最接近的做法是使用 Lion 提供的 Applescript 服务(参见:在 Mac OS X Lion 中,移动到 Mail.app 中第一条/最后一条消息的键盘快捷键是什么?):
on run {input, parameters}
tell application "Mail" to set selected messages of first message viewer to last item of messages of first message viewer
end run
但是,如果最后一条消息是包含多条消息的线程,则此脚本不起作用。