我正在尝试使用Apple脚本在Outlook 2011中创建会议邀请。我打开了Outlook会议类的字典
我尝试使用
创建会议活动tell application "Microsoft Outlook"
set currentTime to (the current date)
set newEvent to make new calendar event with properties {location:"Dial In : +4319284090, Conference code: 5270687926", start time:(currentTime + (60 * 60)), end time:(currentTime + (60 * 60) + (60 * 60) / 2), content:fileContents}
set newMeeting to make new meeting message with properties {meeting:newEvent}
open newMeeting
end tell
但我收到了错误
error "Microsoft Outlook got an error: AppleEvent handler failed." number -10000
任何人都可以帮助我,我将感激你的努力。
答案 0 :(得分:0)
根据字典,meeting message
是A meeting message recieved by the user.
这不是作为邀请发出的实际消息。换句话说,meeting message
是其他人邀请您参加会议时收件箱中显示的消息。
calendar event
具有attendee
属性。我在玩这个游戏的10分钟内无法让它工作,但我的假设是,当创建日历事件时,邀请将会发送到attendees
。
请注意attendee
是只读列表。创建活动时,您必须指定required attendees
和optional attendees
的列表。