无法从Outlook获取自动邮件

问题描述

我正在使用Outlook 365通过节点js创建日历事件。

我用来创建事件的API在下面。

'https://graph.microsoft.com/v1.0/me/calendars/<calendarId>/events'

我正在使用以下格式创建事件。

{
subject: "Let's go for lunch",body: { contentType: 'HTML',content: "Does noon work for you?" },start:
{
    dateTime: "2020-09-10T12:00:00",timeZone: "Pacific Standard Time"
},end:
{
    dateTime: "2020-09-10T12:30:00",isReminderOn: true,reminderMinutesBeforeStart: 30,responseRequested: false,location: { displayName: "Harry's Bar" },attendees:  [
  {
    emailAddress: {
      "address":"visitor@gmail.com","name": "David Willey"
    },type: "required"
  },{
    emailAddress: {
      "address":"user@outlook.com","name": "Jonn Smith"
    },type: "required"
  }
],organizer: {
    "emailAddress":{
        "address":"user@outlook.com","name": "Jonn Smith"
    }
}

},

创建活动后,不会自动将电子邮件发送给这些参与者。一名与会者做出反应后,我收到了电子邮件。创建活动后如何获取自动邮件。

非常感谢。

解决方法

暂无找到可以解决该程序问题的有效方法,小编努力寻找整理中!

如果你已经找到好的解决方法,欢迎将解决方案带上本链接一起发送给小编。

小编邮箱:dio#foxmail.com (将#修改为@)

相关问答

错误1:Request method ‘DELETE‘ not supported 错误还原:...
错误1:启动docker镜像时报错:Error response from daemon:...
错误1:private field ‘xxx‘ is never assigned 按Alt...
报错如下,通过源不能下载,最后警告pip需升级版本 Requirem...