A new automated generated email feature is being introduced to Office 365/Exchange Online called Cortana Email.
This new feature provides incoming meetings and outstanding tasks summary to end user.
At this stage, this Cortana Email is going to be sent to users:
This settings is turn on by default.
Exchange administrator can disable this feature on a per user basis (there is no global settings available) using Exchange Online PowerShell module v2 (https://t.co/Jg3iTICowv).
To disable (or enable), you need to use the following commands:
Connect-ExchangeOnline
Set-UserBriefingConfig –Identity <email address> -Enabled $false – $false to disable the feature, $true to enable it
Get-UserBriefingConfig –Identity <email address>
The CSV file must be the below format:
Identity
emailaddress1
emailaddress2
emailaddress3
Then you can use the loop
$users=Import-Csv <path to the CSV file>
ForEach ($user in $users)
{
$user.identity
$emailaddress=$user.identity
Set-UserBriefingConfig –Identity $emailaddress -Enabled $false
}
When the Cortana Email feature is enabled, end-user will receive an automatic email looking like the below example
End-user can choose to unsubscribe using the link shown at the bottom of the email
They can also use the Cortana web site (https://cortana.office.com/) to subscribe or unsubscribe to these emails