问题描述
我正在使用Outlook API创建日历事件。这是我要发送给API的当前数据:
$data = array(
'subject' => $title,'body' => array(
"ContentType" => "HTML","Content" => $description
),'start' => array(
'dateTime' => date('Y-m-d\TH:i:s',strtotime($date.
" ".$timeslot_arr[0])),'timeZone' => $tzone
),'end' => array(
'dateTime' => date('Y-m-d\TH:i:s',strtotime($date.
" ".$timeslot_arr[1])),'attendees' => array(
array(
'emailAddress' => array(
'Address' => $email,'Name' => $name
)
)
),'ResponseRequested' => false,'IsReminderOn' => false
);
有什么办法可以禁用发送给所有与会者的自动电子邮件?我尝试将'ResponseRequested'和'IsReminderOn'设置为false,但是它不起作用,仍在发送电子邮件。
解决方法
暂无找到可以解决该程序问题的有效方法,小编努力寻找整理中!
如果你已经找到好的解决方法,欢迎将解决方案带上本链接一起发送给小编。
小编邮箱:dio#foxmail.com (将#修改为@)