Created
April 27, 2018 15:34
-
-
Save M0H4MM33D/7380f89b80995b8ca3ec11e5b0f2b257 to your computer and use it in GitHub Desktop.
Send auto rapport cvs or txt or .. to mail using powershell (ATTACHMENT FILE).
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$x=GET-Date | |
$t7en = "C:\Users\Administrateur\Desktop\rapport.csv" | |
$smtpServer = "smtp.gmail.com" | |
$sender = "EMAIL SERNDER" | |
$users = "EMAIL RCP"; | |
$subject = "Rapport at $x" | |
$body = "By M0H4MM3D" | |
$message = new-object System.Net.Mail.MailMessage | |
$message.From = $sender | |
$message.To.Add($users) | |
$message.IsBodyHtml = $True | |
$message.Subject = $Subject | |
$attach = new-object Net.Mail.Attachment($t7en) | |
$message.Attachments.Add($attach) | |
$message.body = $body | |
Write-Host "Sending email notification to $user" -ForegroundColor Green | |
$smtp = New-Object Net.Mail.SmtpClient($smtpServer, 587) | |
$smtp.EnableSsl = $true | |
$smtp.Credentials = New-Object System.Net.NetworkCredential("[email protected]", "PASSWORD"); | |
$smtp.Send($message) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment