2020-12-14 13:48:47 +01:00
|
|
|
#!/snap/bin/powershell
|
2020-12-29 15:14:21 +01:00
|
|
|
<#
|
|
|
|
.SYNTAX ./new-email.ps1 [<address>]
|
|
|
|
.DESCRIPTION starts the default email client to write a new email
|
|
|
|
.LINK https://github.com/fleschutz/PowerShell
|
|
|
|
.NOTES Author: Markus Fleschutz / License: CC0
|
|
|
|
#>
|
2020-12-14 13:48:47 +01:00
|
|
|
|
2021-01-02 11:08:59 +01:00
|
|
|
param([string]$EmailAddress = "")
|
2020-12-14 13:48:47 +01:00
|
|
|
|
|
|
|
try {
|
2020-12-29 15:14:21 +01:00
|
|
|
if ($EmailAddress -eq "" ) {
|
|
|
|
$EmailAddress = "markus@fleschutz.de"
|
2020-12-25 11:30:43 +01:00
|
|
|
}
|
2020-12-29 15:14:21 +01:00
|
|
|
$URL="mailto:$EmailAddress"
|
2020-12-14 13:48:47 +01:00
|
|
|
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
|
|
|
|
}
|