How to Enable or Disable Auto News Digest in SharePoint Online
In today’s fast-paced work environment, staying up to date with the latest news and updates within an organization is crucial. SharePoint Online offers a powerful feature called Auto News Digest, which automatically aggregates the latest news posts from various SharePoint sites and Organization news sites that are relevant to users and sends an automated email to users.
SharePoint uses Microsoft Graph to determine if the news post is relevant for a user or not. SharePoint sends one email digest per week. By leveraging this feature, users can stay informed without having to manually visit each site individually, saving time and ensuring they don’t miss out on important updates.
In some cases, organizations that already have a high volume of emails may choose to disable SharePoint Auto News Digest feature to minimize the number of additional emails being sent to users. You can use any one of the approaches given below for enabling or disabling auto news digest feature in SharePoint online for all users at tenant level.
Using SharePoint Online PowerShell
Use below SharePoint Online PowerShell script to enable or disable the SharePoint auto news digest feature in SharePoint online at tenant level:
# SharePoint online admin center URL
$adminCenterUrl = Read-Host -Prompt "Enter your SharePoint admin center site URL (e.g https://contoso-admin.sharepoint.com/)"
# Connect to SharePoint online admin center
Connect-SPOService -Url $adminCenterUrl
# Enable Auto News Digest in SharePoint Online
Set-SPOTenant -EnableAutoNewsDigest $true
# Disable Auto News Digest in SharePoint Online
Set-SPOTenant -EnableAutoNewsDigest $false
# Disconnect SharePoint online connection
Disconnect-SPOService
Using PnP PowerShell
You can use below PnP PowerShell script for enabling or disabling the SharePoint auto news digest feature in SharePoint online for all users at tenant level:
# SharePoint online admin center URL
$adminCenterUrl = Read-Host -Prompt "Enter your SharePoint admin center site URL (e.g https://contoso-admin.sharepoint.com/)"
# Connect to SharePoint online admin center
Connect-PnPOnline -Url $adminCenterUrl -Interactive
# Enable Auto News Digest in SharePoint Online
Set-PnPTenant -EnableAutoNewsDigest $true
# Disable Auto News Digest in SharePoint Online
Set-PnPTenant -EnableAutoNewsDigest $false
# Disconnect SharePoint online connection
Disconnect-PnPOnline
Conclusion
SharePoint Auto News Digest is a valuable feature that helps streamline information delivery within organizations. By enabling this feature, SharePoint can automatically compile and deliver news and updates from various SharePoint sites directly to users’ inboxes. Disabling Auto News Digest is also straightforward, allowing organizations to customize their SharePoint experience based on their specific requirements. SharePoint Online PowerShell and PnP PowerShell scripts provide convenient methods to enable or disable Auto News Digest effortlessly, empowering administrators to optimize their SharePoint environment for efficient information sharing.
Learn more
- Boost the visibility of SharePoint news
- Enable or Disable the Social Bar (Like, Views, Save for later) in SharePoint at tenant level
- Enable or Disable the Return to Classic SharePoint link in SharePoint Online
- Set a page template as default page template in SharePoint Online
- Allow use of custom scripts in SharePoint Online using PowerShell