Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在使用下面链接中提供的实现来创建一个 ics 文件作为 Outlook 约会提醒。它似乎工作正常,但我无法指定附加文件的名称。
vCalendar 实施
任何帮助都感激不尽。我希望将附件命名为 Appointment Reminder.ics
谢谢!
您链接的实现显示了如何将日历条目作为替代视图发送,而不是作为附件发送。我猜您也希望人们将其视为附件。在这种情况下,您只需将文件附加到同一条消息:
msg.Attachments.Add(Attachment.CreateAttachmentFromString( str.ToString(), "Appointment Reminder.ics"));