发送Outlook会议请求,而不接受/拒绝选项而不、选项、会议、Outlook

2023-09-03 22:10:26 作者:凝尘丶微雨烟

我送我的使用以下作为源.NET程序的Outlook会议要求: Sending没有Outlook Outlook会议要求呢? 这个工作很适合我,但我仍然有一个问题/问题。

I am sending an Outlook meeting request with my .NET-program using the following as a source: Sending Outlook meeting requests without Outlook? This worked well for me, but I still have one problem/question.

如果我直接发送邀请与Outlook我必须定义,我不想从被邀请的人一个答案(接受,拒绝...)的可能性。因此,如果被邀请的人打开我的邮件,他们不看接受,拒绝...按钮。

If I send an invitation directly with Outlook I have the possibility to define that I DONT want an answer (accept, decline, ..) from the invited people. So if the invited people open my mail they dont see accept, decline... buttons.

我想这种行为也是,如果我发送自动生成的邮件与我的.NET程序。是否有一个选项,以编程方式取消激活的回答特征?使接收者不看接受,拒绝...按钮,如果他们打开我的自动生成邮件?

I want this behavior also if I send auto-generated mails with my .NET-program. Is there an option to deactive the answer-feature programmatically? So that receivers DONT see accept, decline... buttons if they open my auto-generated mails?

我已经尝试设置RSVP =假,DISALLOW计数器= TRUE:

I already tried to set RSVP = False, DISALLOW-COUNTER = True:

BEGIN:VEVENT
ATTENDEE;CN=receiver@mail.de;RSVP=FALSE:receiver@mail.de
SET X-MICROSOFT-DISALLOW-COUNTER:TRUE
.
.
.
END:VEVENT

我挽救了两个ICS-文件与展望 - 之一,答案启用和一个与答案无效。上述的两行是唯一不同的,但它不能在我的生成的消息工作。如果我打开邮件它仍然显示了接受,拒绝...按钮。你知道吗?

I saved two ICS-Files with Outlook - one with answer enabled and one with answer disabled. The above two lines were the only different ones, but it doesn't work in my generated message. If I open the mail it still shows the accept, decline, ... buttons. Any idea?

推荐答案

我相信你说的是Outlook的请求响应选项。当这个被选中,则Outlook生成的.ics文件RSVP = FALSE为所有与会者。当与会者收到这一点,他们仍然会看到接受,暂定,拒绝按钮,但这些按钮将不会发送响应,他们会简单地确定这个邀请是如何,或者添加到他们自己的日历。

I believe you are talking about Outlook's "Request Responses" option. When that is unchecked, Outlook generates .ics files with RSVP=FALSE for all attendees. When the attendee receives this, they will still see Accept, Tentative, Decline buttons, but these buttons won't send a response, they will simply determine how or if this invitation is added to their own calendar.

如果请求响应被选中,那么RSVP = TRUE用于所有与会者,这将导致其接受/暂定/下降按钮也显示为发送响应现在的选择,不要发送响应(这相当于什么发生在未被选中请求响应),并编辑发送前的响应。

If "Request Responses" is checked then RSVP=TRUE is used for all attendees which will cause their Accept/Tentative/Decline buttons to also show options for Send the Response Now, Do Not Send a Response (this is equivalent to what happens when Request Responses wasn't checked), and Edit the Response before Sending.