Outlook约会加载项是否支持iPhone Outlook App

时间:2019-06-05 12:41:04

标签: outlook office-js office-addins outlook-web-addins office365-apps

如果我为约会开发了Outlook外接程序,它是否可以在iPhone的Outlook上看到。我如下测试了<MobilSettings>,但没有用?

 <FormSettings>
    <Form xsi:type="ItemRead">
      <DesktopSettings>
        <SourceLocation DefaultValue="https://sampleaddin.com/index.html"/>
        <RequestedHeight>250</RequestedHeight>
      </DesktopSettings>
    </Form>
  </FormSettings>

2 个答案:

答案 0 :(得分:2)

目前,Outlook Mobile仅支持邮件读取。

这意味着MobileMessageReadCommandSurface是您应该在清单的mobile部分中声明的唯一ExtensionPoint。

有关更多信息,请参见Add-ins for Outlook mobile

答案 1 :(得分:0)

如果仅定位阅读电子邮件,则可以支持移动设备。然后,可以声明PhoneSettings节点:

<FormSettings>
<Form xsi:type="ItemRead">
  <DesktopSettings>
    <SourceLocation DefaultValue="https://myaddin/index.html"/>
    <RequestedHeight>250</RequestedHeight>
  </DesktopSettings>
  <TabletSettings>
    <SourceLocation DefaultValue="https://myaddin/index.html" />
    <RequestedHeight>250</RequestedHeight>
  </TabletSettings>
  <PhoneSettings>
    <SourceLocation DefaultValue="https://myaddin/index.html" />
  </PhoneSettings>
</Form>
</FormSettings>