Added Files
This commit is contained in:
27
Powershell/Scripts/send-email.ps1
Normal file
27
Powershell/Scripts/send-email.ps1
Normal file
@@ -0,0 +1,27 @@
|
||||
<#
|
||||
.SYNTAX send-email.ps1
|
||||
.DESCRIPTION sends an email
|
||||
.LINK https://github.com/fleschutz/PowerShell
|
||||
.NOTES Author: Markus Fleschutz / License: CC0
|
||||
#>
|
||||
|
||||
$smtpServer = "smtp.example.com"
|
||||
$From = read-host "Enter sender email address"
|
||||
$To = read-host "Enter recipient email address"
|
||||
$Subject = read-host "Enter subject"
|
||||
$Body = read-host "Enter message"
|
||||
|
||||
try {
|
||||
$msg = new-object Net.Mail.MailMessage
|
||||
$smtp = new-object Net.Mail.SmtpClient($smtpServer)
|
||||
$msg.From = $From
|
||||
$msg.ReplyTo = $From
|
||||
$msg.To.Add($To)
|
||||
$msg.subject = $Subject
|
||||
$msg.body = $Body
|
||||
$smtp.Send($msg)
|
||||
exit 0
|
||||
} catch {
|
||||
write-error "⚠️ Error in line $($_.InvocationInfo.ScriptLineNumber): $($Error[0])"
|
||||
exit 1
|
||||
}
|
||||
Reference in New Issue
Block a user