を使用して、通知イベント  OS X 10.9 Maverickを書き込もうとしています。AppleScript
このコードを使用して、タイトルとサブタイトルを正常に送信しました。
set emailFrom to "Johnny Appleseed"
set emailTitle to "The Email Subject"
set emailMessage to "Hello, this is a test"
display notification with title emailFrom subtitle emailTitle
emailFrom、emailTitle、および emailMessage を表示しようとしているので、次のようにフォーマットされています。

AppleScript 通知センターのドキュメントでは、タイトルとサブタイトルについてのみ説明しています。
ディスプレイ通知に追加しようとしmessageましたが、うまくいきませんでした。  
set emailFrom to "Johnny Appleseed"
set emailTitle to "The Email Subject"
set emailMessage to "Hello, this is a test"
display notification with title emailFrom subtitle emailTitle message emailMessage
通知に「メッセージ」部分を追加するにはどうすればよいですか?