SharePoint Auto Digest Email – update September 2020

12 Jun

Recently Microsoft announced a new feature: SharePoint Auto Digest Email

SharePoint Auto-News Digest sends automated email to users covering the latest News posts that they have not yet read. It is default turned on

There is a lot of fuss about this new feature, because it can possible generate a lot of unwanted emails in an organization, noise for users and therefor additional load for the support organization.

From a business perpective

For one of my clients it will be quite annoying: we’ve set up a portal, with news, which is globally available. The news items presented there are targeted for specific countries and languages. Everybody has permissions to access all news posts, but they won’t see all of them in their portal: Dutch news won’t show up for people speaking Chinese for example. These people are about to receive a weekly news digest with news in all kinds of languages and all kinds of topics that do not apply to them.

STOP

At the moment of writing there is no mention of a tenant wide control option to turn this off for everybody as it’s turned on by default.
Turning this feature off is a per user setting, which only the user itself can manage.

What is really going on

There are a few caveats:

  • Only published news posts are sent in the digest
  • Users won’t see news that they don’t have permissions to see
  • The email contains news that users have not yet read based on sites they are following

Emails are sent from SharePoint Online, no-reply@sharepointonline.com. Office 365 Message Center, o365mc@microsoft.com, as administrator emails come from.
It’s a weekly email. I can imagine these emails will be sent in batches, so it can be a different day for users.
If users want to opt-out of receiving the Auto-News Digest, they can click the unsubscribe button at the bottom of the email. If they want to subscribe again then… <how?>
No branding or theming of your portal is used in the email.

Do external/guest users get these emails?

Emails are sent based on news of sites users are following. So when a guest user doesn’t have a OneDrive license, followed sites can’t be stored there and users don’t see the follow this site option on a particular site, so the auto-news digest email won’t be sent either.

Is there nothing we can do to stop sending these auto-news digest emails?

Well, we can stop users from following certain sites. When users don’t follow the sites containing the primary news they won’t receive the auto-news digest emails about news items of these sites. At my clients’ case this seems a viable solution to prevent the scenario described in the first section of this post.

A script was created which checks if a users follows a specific news site. If this is the case the site will be unfollowed by deleting the item from the list this is stored in, the Social list, in the users’ OneDrive site.

$newsUrl = "https://a specific news site" 

Connect-PnPOnline $tenantUrl -Credentials ITIdeaDev

$personalSites = Get-PnPTenantSite -IncludeOneDriveSites -Filter  "Url -like '-my.sharepoint.com/personal/'"
$personalSites | ForEach-Object {
    $id = $null
    $followed = $false
    Connect-PnPOnline $_.Url -Credentials ITIdeaDev
    $sites = (Get-PnPListItem -List Social -Fields "Title", "ID", "Url", "FileDirRef").FieldValues
    $sites |% {  
        if($_.FileDirRef -like "*FollowedSites"){
            if($_.Url -eq $newsUrl){
                Write-Host "News site followed" $_.Url 
                $followed = $true
                $id = $_.ID
            }
        }   
    }

    if($followed){
        Remove-PnPListItem -List Social -Identity $id -Force 
    }
}

Summary

The idea of sending users the news they missed is a noble idea, but it lacks any type of control. The only thing which can be done is make users unfollow sites where news is stored, but ofcourse you’re not fully in control of that either.

Please consider up-voting this uservoice: https://office365.uservoice.com/forums/273493-office-365-admin/suggestions/40623631-admin-controls-required-for-new-feature-sharepoin

Update September 2020

Admin controls are now available whereby Tenants can opt out via the Power Shell command:
Set-SPOTenant -EnableAutoNewsDigest $true | $false.

2 Replies to “SharePoint Auto Digest Email – update September 2020

  1. I’ve been using SharePoint to add in Newslink since 2012 December, the news was going to the top of the HOME page every time I posted a new one. But it changed after 2021, I no more find the new updated news on the HOME page, I need to click the small button at the right top corner-see all, in order to find my latest news. From yesterday, 01 Feb, I was unable to see ly latest news even I click -see all button, thus I unable to select them when I try to use function to email the latest news I post just now. Although, I can still find my latest news on the edit page, where I can delete all the posts.
    Do you have any idea:
    1. Is this my browser issue, I’m using chrome, and cleared the cache and tried again.
    2. My corporate IT has done some setting?
    3. Microsoft issue?
    I really need some expert advice, it’s frustrating and delay my work, thanks for replying.

  2. Thanks for your post. Where did you get the information, that the news are based on sites, the user is following? I only found information, that news are relevant when they are posted by someone in the direct management chain of the user or someone they are closely working with (https://support.microsoft.com/en-us/office/automatically-sending-news-post-digests-b930b579-0de5-4c67-86f0-de64b87c45e3). Did this change? To me it would make more sense, if the news came from followed sites …

Leave a Reply

Your email address will not be published. Required fields are marked *

This site uses Akismet to reduce spam. Learn how your comment data is processed.