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
Send Email using PowerShell
WhatsApp
Lakshmanan Sethu Sankaranarayan
11y
7.7
k
0
0
25
Blog
If you have to send email using PowerShell Command., then use SPUtility object to meet your purpose. Here is the code below.
$web = Get-SPWeb -Site
http://mysite
$headers = New-Object System.Collections.Specialized.StringDictionary
$message.To.Add("
[email protected]
")
$message.Cc.Add("
[email protected]
")
$headers.Add("from", "
[email protected]
")
$headers.Add("subject", "Test Email Subject")
$headers.Add("content-type", "text/html")
$bodyText = "Hello C# Corner?"
[Microsoft.SharePoint.Utilities.SPUtility]::SendEmail($web, $headers, $bodyText)
Send Email using PowerShell
Recommended related topics
Membership not found