Want to become a Vibe Coder? Join Vibe Coding Training here
x
C# Corner
Tech
News
Videos
Forums
Jobs
Books
Events
More
Interviews
Live
Learn
Training
Career
Members
Blogs
Challenges
Certification
Contribute
Article
Blog
Video
Ebook
Interview Question
Collapse
Feed
Dashboard
Wallet
Learn
Achievements
Network
Refer
Rewards
SharpGPT
Premium
Contribute
Article
Blog
Video
Ebook
Interview Question
Register
Login
Enable send email notification in SharePoint Tasks list using powershell
WhatsApp
Vijai Anand Ramalingam
12y
17.4
k
0
0
25
Blog
I have a Tasks list in my team site. I need to enable send email notification so that when a task is assigned or changed the
task owner should get an email notification. Go to team site => Tasks list => List Settings => Advanced Settings. You can find
an option to enable the send email notification.
In this blog you will see how to enable send email notification in SharePoint Tasks list using powershell.
Powershell Script:
$site=Get-SPSite "
https://serverName/sites/Vijai/
"
$web=$site.OpenWeb()
$list=$web.Lists.TryGetList("Tasks")
if($list -ne $null)
{
$list.EnableAssignToEmail =$true
$list.Update()
}
Enable send email notification in SharePoint Tasks list using powershell
People also reading
Membership not found