How to open Outlook Calendar from an email link or webpage?(如何从电子邮件链接或网页打开 Outlook 日历?)
问题描述
是否可以从电子邮件链接或网页打开 Outlook 日历?我正在寻找可以打开收件人 Outlook 日历的代码.我不想用任何东西填充日历 - 只需打开 Outlook 日历,这样他们自己就可以抽出一些时间.
Is it possible to open Outlook Calendar from an email link or a webpage? I am looking for code that will open the recipient's Outlook Calendar. I don't want to populate the calendar with anything - just open Outlook Calendar so they themselves can block out some time.
推荐答案
在客户端安装outlook的情况下,可以使用如下语法:
On the condition that outlook is installed on the client, you can use the following syntax:
<outlook:calendar>
(作为链接)
其他链接包括:
打开特定项目
<Outlook:Contacts/~Itemname>
要打开联系人 fred 博客,请键入以下内容:
To open the contact fred blogs, type the following:
<Outlook:Contacts/~fred blogs>
打开公共文件夹中的项目
To open an Item in a Public Folder
<Outlook://Public Folders/Foldername/~Itemname>
例如,要在名为Public Contacts"的公共文件夹中打开名为John Doe"的联系人,请使用以下超链接:
For example, to open a contact named, "John Doe" in a plublic folder named, "Public Contacts" use the following hyperlink:
<Outlook://Public Folders/Public Contacts/~John Doe>
打开公共文件夹中的文件
To open a file in a Public Folder
<Outlook://Public Folders/Foldername/Mydocument.doc>
注意:在上面的示例中,Word 将打开文档文件.由于它不是 Outlook 项目,因此您不需要使用波浪号继续文件名.
Note: In the above example Word will open the document file. You do not need to proceed the file name with a tilde since it is not an Outlook item.
打开收件箱文件夹子文件夹中的项目
To Open an Item in a Subfolder of a Folder in Your Inbox
<Outlook:Inbox/Foldername/Subfoldername/~Itemname>
要打开位于收件箱的人工"文件夹中的新人工时间",请键入以下内容:
To open New Labor Time, located in the Labor folder in your Inbox, type the following:
<Outlook:Inbox/Labor/~New Labor Time>
这篇关于如何从电子邮件链接或网页打开 Outlook 日历?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:如何从电子邮件链接或网页打开 Outlook 日历?


- Laravel 5:Model.php 中的 MassAssignmentException 2021-01-01
- PHP - if 语句中的倒序 2021-01-01
- 覆盖 Magento 社区模块控制器的问题 2022-01-01
- Oracle 即时客户端 DYLD_LIBRARY_PATH 错误 2022-01-01
- 如何从数据库中获取数据以在 laravel 中查看页面? 2022-01-01
- 如何在 Symfony2 中正确使用 webSockets 2021-01-01
- 如何使用 Google API 在团队云端硬盘中创建文件夹? 2022-01-01
- PHP foreach() 与数组中的数组? 2022-01-01
- 使用 GD 和 libjpeg 支持编译 PHP 2022-01-01
- openssl_digest vs hash vs hash_hmac?盐与盐的区别HMAC? 2022-01-01