How to Enable Email Notification for a Task List in SharePoint 2013
In SharePoint 2013, you will be amazed to see that , there is no option available in UI to enable email Alerts for Task List. However, this can be easily achieved through Powershell commands. Below are the piece of code which enables email notification. $spsite=Get-SPSite “http://mysite/” $spweb=$spsite.OpenWeb() $splist=$spweb.Lists.TryGetList(“Tasks”) if($splist -ne $null) { $splist.EnableAssignToEmail =$true $splist.Update() […]