2021-04-07 11:53:57 +02:00
|
|
|
#!/usr/bin/pwsh
|
2020-12-29 15:14:21 +01:00
|
|
|
<#
|
2021-03-22 20:10:18 +01:00
|
|
|
.SYNTAX ./send-email.ps1
|
|
|
|
.DESCRIPTION sends an email
|
|
|
|
.LINK https://github.com/fleschutz/PowerShell
|
|
|
|
.NOTES Author: Markus Fleschutz / License: CC0
|
2020-12-29 15:14:21 +01:00
|
|
|
#>
|
2020-09-29 20:05:52 +02:00
|
|
|
|
2020-11-22 11:03:18 +01:00
|
|
|
$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"
|
|
|
|
|
2020-10-05 13:12:12 +02:00
|
|
|
try {
|
|
|
|
$msg = new-object Net.Mail.MailMessage
|
|
|
|
$smtp = new-object Net.Mail.SmtpClient($smtpServer)
|
2020-11-22 11:03:18 +01:00
|
|
|
$msg.From = $From
|
|
|
|
$msg.ReplyTo = $From
|
|
|
|
$msg.To.Add($To)
|
|
|
|
$msg.subject = $Subject
|
|
|
|
$msg.body = $Body
|
2020-10-05 13:12:12 +02:00
|
|
|
$smtp.Send($msg)
|
2020-11-22 11:03:18 +01:00
|
|
|
exit 0
|
2020-12-09 10:30:55 +01:00
|
|
|
} catch {
|
2021-02-16 10:03:20 +01:00
|
|
|
write-error "ERROR: line $($_.InvocationInfo.ScriptLineNumber): $($Error[0])"
|
2020-12-09 10:30:55 +01:00
|
|
|
exit 1
|
|
|
|
}
|