Events
Microsoft 365 Community Conference
May 6, 2 PM - May 9, 12 AM
Skill up for the era of AI at the ultimate community-led Microsoft 365 event, May 6-8 in Las Vegas.
Learn moreThis browser is no longer supported.
Upgrade to Microsoft Edge to take advantage of the latest features, security updates, and technical support.
Important
We've paused sending Briefing emails to make some improvements. Users can still access the Viva Insights Outlook add-in or Viva Insights app in Teams for key functionality until this service resumes. For more information about this change, refer to Briefing pause.
As the admin, you can configure Briefing email for your organization at the user or tenant level. You can set the default state for all users in your tenant as opted in or opted out in the Microsoft 365 admin center, or you can enable or disable the Briefing email for a specific user or multiple users with PowerShell.
Confirm the following before configuring access:
Confirm the following additional prerequisites. Then you can use the Exchange Online PowerShell V2 module to set Briefing email access for one user or for multiple users.
Important
Before configuring access, confirm you're connected to Exchange Online.
To enable or disable Briefing email for a specific user, use the Exchange Online PowerShell V2 module and the following command line, where you replace "joe@contoso.com" with your applicable username and organization:
Set-UserBriefingConfig -Identity joe@contoso.com [-Enabled [<$true | $false>]
Note
When Enabled is set as $true, people who had previously unsubscribed will continue to be opted out and will not receive any Briefings until they opt back in from their Viva Insights app in Teams or on the web.
For example, to get the current state of the Briefing email flag for "joe@contoso.com," you'd use:
Get-UserBriefingConfig -Identity joe@contoso.com
You can also enable or disable Briefing email for multiple users with a PowerShell script that iterates through the users, changing the value one user at a time. Use the following script to:
Create a comma-separated value (.csv) text file that contains the Identity of the users you want to configure. For example:
Identity
ClaudeL@contoso.com
LynneB@contoso.com
ShawnM@contoso.com
Specify the location of the input .csv file, the output .csv file, and the value of Enabled to $true or $false for each user:
$inFileName="<path and file name of the input .csv file that contains the users, example: C:\admin\Users2Opt-in.csv>"
$outFileName="<path and file name of the output .csv file that records the results, example: C:\admin\Users2Opt-in-Done.csv>"
$briefingEmailMode = $true
$users=Import-Csv $inFileName
ForEach ($user in $users)
{
$user.identity
$upn=$user.identity
Set-UserBriefingConfig –Identity $upn -Enabled $briefingEmailMode
Get-UserBriefingConfig –Identity $upn | Export-Csv $outFileName -Append
}
Run the resulting commands at the Exchange Online PowerShell v2 module command prompt.
Note
Users can choose to opt out or back in at any time through their Viva Insights app in Teams or on the web. After you change the Briefing setting in the admin center, it will take 24 hours for the new setting change to take effect.
As the admin, use the following steps to change the setting for Briefing email at the tenant level. This setting is enabled by default, so that all users who have an Exchange Online license and their Microsoft 365 is set to a supported language will receive the Briefing email.
Users can unsubscribe individually from within any Briefing email they receive. If you disable the Briefing email at the tenant level, users in your organization will not receive the Briefing email, but individual users can override this tenant-level setting. To completely prevent a user from receiving the Briefing email, you must disable the Briefing email for that user with PowerShell.
Note
If you're a targeted release customer, you might see a new admin experience. To learn how to configure access for a tenant through this new experience, refer to Using the new admin experience.
Sign in to the Microsoft 365 admin center.
Make sure you're using the new admin center. To do this, if the switch in the upper right of the page reads Try the new admin center, select it so that it reads The new admin center:
In the left pane, expand Settings, and then select Org Settings.
Under Org Settings, select Briefing email (Preview).
Select or deselect the checkbox for Let people in your organization receive the Briefing email, and then select Save changes. If you deselect the checkbox, all users in your organization will not receive Briefing email, including all those who were receiving Briefing email. However, individuals can explicitly subscribe again from their Viva Insights app in Teams or on the web.
Events
Microsoft 365 Community Conference
May 6, 2 PM - May 9, 12 AM
Skill up for the era of AI at the ultimate community-led Microsoft 365 event, May 6-8 in Las Vegas.
Learn more