die Syntax ist prinzipiell in Ordnung, du kannst aber das probieren…

ich bin mit der speziellen FM Schreibweise etwas überfordert, deshalb hier die normale Syntax
Show Plain Text
  1. tell application "Mail"
  2.   activate
  3.   set theNewMessage to make new outgoing message with properties {subject:Betreff, content:Mailtext, visible:true}
  4.   tell theNewMessage
  5.     set sender to Absender
  6.     make new to recipient at end of to recipients with properties {address:MailEmpfaenger}
  7.   end tell
  8. end tell
----------
Gruss

Stefan