27 lines
1.1 KiB
PowerShell
27 lines
1.1 KiB
PowerShell
# sends an email to charlotte.croce@mymail.champlain.edu
|
|
# with one parameter for the email body
|
|
function SendAlertEmail($Body){
|
|
$From = "charlotte.croce@mymail.champlain.edu"
|
|
$To = "charlotte.croce@mymail.champlain.edu"
|
|
$Subject = "Suspicious Activity"
|
|
|
|
# remove password before publishing to GitHub!
|
|
<<<<<<< HEAD
|
|
<<<<<<< HEAD
|
|
# ...and if you accidentally push with the password visible, just delete the appKey
|
|
$Password = "insert-new-appkey-here" | ConvertTo-SecureString -AsPlainText -Force
|
|
=======
|
|
$Password = "xxxx" | ConvertTo-SecureString -AsPlainText -Force
|
|
>>>>>>> 2a39cde6cba8cf89a13018201ce592d875e1409e
|
|
=======
|
|
# ...and if you accidentally push with the password visible, just delete the appKey
|
|
$Password = "insert-new-appkey-here" | ConvertTo-SecureString -AsPlainText -Force
|
|
>>>>>>> 25c575397b1c76c4310e671c9a2bd7a2e53bf60a
|
|
$Credential = New-Object -TypeName System.Management.Automation.PSCredential -ArgumentList $From, $Password
|
|
|
|
Send-MailMessage -From $From -To $To -Subject $Subject -Body $Body -SmtpServer "smtp.gmail.com" `
|
|
-Port 587 -UseSsl -Credential $Credential
|
|
|
|
}
|
|
|
|
#SendAlertEmail "test email body"
|