Exchange Online – You can now flag external emails in Outlook
To help increase awareness to end-users to pay more attention on emails they receive, you can now have external emails tag on Outlook Mobile and...
1 min read
cubesys : Jun 15, 2020 12:00:00 AM
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
To help increase awareness to end-users to pay more attention on emails they receive, you can now have external emails tag on Outlook Mobile and...
As you may know, Azure AD has been allowing to generate a one time password and sent it by email for external (guest) users for some time (2019 – see
As you know, there has been an option for Exchange administrator but also for end user to automatically forward incoming email to another email...