2020-12-14 13:48:47 +01:00
|
|
|
#!/snap/bin/powershell
|
|
|
|
|
|
|
|
# Syntax: ./new-email.ps1 [<address>]
|
|
|
|
# Description: starts the default email client to write a new email
|
|
|
|
# Author: Markus Fleschutz
|
|
|
|
# Source: github.com/fleschutz/PowerShell
|
|
|
|
# License: CC0
|
|
|
|
|
|
|
|
param([string]$emailAddress)
|
|
|
|
try {
|
2020-12-25 11:30:43 +01:00
|
|
|
if ($emailAddress -eq "" ) {
|
|
|
|
$emailAddress = "markus@fleschutz.de"
|
|
|
|
}
|
2020-12-14 13:48:47 +01:00
|
|
|
$URL="mailto:$emailAddress"
|
|
|
|
Start-Process $URL
|
|
|
|
exit 0
|
|
|
|
} catch {
|
2020-12-25 11:30:43 +01:00
|
|
|
write-error "ERROR in line $($_.InvocationInfo.ScriptLineNumber): $($Error[0])"
|
2020-12-14 13:48:47 +01:00
|
|
|
exit 1
|
|
|
|
}
|