Pregunta

How to programmatically set Allow this document library to receive e-mail in Incoming E-Mail section for Document Libraries in C# code? I could set other Incoming E-Mail properties as follows:

rootFolder.Properties["vti_emailusesecurity"] = 1;
rootFolder.Properties["vti_emailsaveattachments"] = 1;
rootFolder.Properties["vti_emailattachmentfolders"] = "subject";
rootFolder.Properties["vti_emailoverwrite"] = 1;
¿Fue útil?

Solución

EnableAssignToEmail property is not available in CSOM. So there is no way set incoming emails through CSOM but it's possible through PowerShell Scripts.

https://officespdev.uservoice.com/forums/224641-general/suggestions/7402411-enableassigntoemail-list-method-missing-on-list-ob

Licenciado bajo: CC-BY-SA con atribución
scroll top