PowerShell, Servidores PowerShell #Abrir fichero con cuentas de correo Get-Content F:\power\correos.txt | %{ #Es necesario tener un servidor SMTP instalado Send-MailMessage -to $_ -from "mail@example.com" -subject "Test mail" -SmtpServer localhost } 12345 #Abrir fichero con cuentas de correoGet-Content F:\power\correos.txt | %{#Es necesario tener un servidor SMTP instaladoSend-MailMessage -to $_ -from "[email protected]" -subject "Test mail" -SmtpServer localhost}