使用 PHP 以电子邮件或其他方式发送 Outlook 日历邀请
我遇到的情况是,我需要 Outlook/或同等设备(黑莓等)的收件人接收 Outlook 日历事件格式的日历事件,而不是电子附件。
这是为了让我能够使用 Outlook 日历特定的标题(有人知道这些标题命令是什么?),例如取消、修改等。 我发现我只是缺少 Outlook 需要将电子邮件解释为 Outlook 日历的正确 MIME 标头字符串。
我非常感谢对此的任何帮助。我所有的客户都使用基于 Outlook 的邮件软件(超过 1000 个)。
谢谢
I am in a situation where i would need recipients with Outlook/or Equivalent(blackberry etc) to receive calendar events in Outlook Calendar event format, not an ical attachement.
This is to enable me use outlook calendar specific headers (Anyone knows what these header commands are?) like cancel, modify etc.
I figured that i am just missing the correct MIME header string which Outlook needs to interpret the email as an Outlook calendar.
I would really appreciate any help on this. All my clients use Outlook based mail softwares (over a 1000 of them).
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
抱歉我没有回复你。这可能不是您正在寻找的确切解决方案,但它可能有效。
以下是如何发送日历请求< /a>.它看起来像内容类型“
text/calendar
”,标题应为“content-disposition
”、“attachment; filename=”
您可以生成 ICS 并通过电子邮件或网站上的可下载链接将其发送出去。以下是 ICS 文件的示例:
Sorry that I didn't get back to you. This may not be the exact solution that you were looking for, but it could work.
Here's a howto that shows to send a calendar request. It looks like the content type "
text/calendar
" and the header shold be "content-disposition
", "attachment; filename=<file>
"You could generate an ICS and send that out via email or downloadable link on your site. Here's an example of an ICS file:
我正在查看收到的日历邀请的来源,我注意到
我正在使用 Apple Mail,但我想知道使用“calendarmessage”的电子邮件客户端是否存在一定的一致性。只是觉得值得一提。
I was looking through the source of a calendar invitation I received and I noticed this header
I'm using Apple Mail but I wonder if there is some consistency accross email clients with the use of "calendarmessage". Just thought is was worth mentioning.