Feb 08 2022 09:38 PM
$username = "Email address removed"
$password = "aaaaaabbbbb"
$sstr = ConvertTo-SecureString -string $password -AsPlainText -Force
$cred = New-Object System.Management.Automation.PSCredential -argumentlist $username, $sstr
$body = "This is a test email"
Send-MailMessage -To "Email address removed" -From "Email address removed" -Subject 'Test message' -Body $body -BodyAsHtml -SmtpServer smtp.office365.com -UseSSL -Credential $cred -Port 587
Run this PS script that send email from server , if running on windows server 2019 ,it's fine.
but show error on windows server 2016.
anyone know it?
Send-MailMessage : Unable to read data from the transport connection: net_io_connectionclosed.
At E:\test\test.ps1:6 char:1
+ Send-MailMessage -To "Email address removed" -From "Email address removed ...
+ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+ CategoryInfo : InvalidOperation: (System.Net.Mail.SmtpClient:SmtpClient) [Send-MailMessage], SmtpException
+ FullyQualifiedErrorId : SmtpException,Microsoft.PowerShell.Commands.SendMailMessage
Feb 09 2022 02:08 AM
Feb 09 2022 05:40 PM
SolutionFeb 09 2022 09:54 PM
Aug 04 2022 01:40 AM
@Harm_Veenstra thanks this resolved my issue
Feb 09 2022 05:40 PM
Solution