Kein Problem, script inside…

die Excel Datei muss geöffnet sein. Dann code in Script Editor.app kopieren und starten

Show Plain Text
  1. set addressRange to "F2:F122"
  2.  
  3. tell application "Microsoft Excel"
  4.   set mailAddresses to {}
  5.   repeat with anItem in (get value of range addressRange of active sheet)
  6.     set end of mailAddresses to item 1 of anItem
  7.   end repeat
  8. end tell
  9.  
  10. tell application "Mail"
  11.   set newMessage to make new outgoing message with properties {visible:true}
  12.   repeat with anAddress in mailAddresses
  13.     tell newMessage to make new bcc recipient at end of bcc recipients with properties {address:anAddress}
  14.   end repeat
  15. end tell
----------
Gruss

Stefan