PowerShell/Scripts/open-email-client.ps1

16 lines
370 B
PowerShell
Raw Normal View History

#!/snap/bin/powershell
2020-12-29 15:14:21 +01:00
<#
.SYNTAX ./open-email-client.ps1
.DESCRIPTION starts the default email client
.LINK https://github.com/fleschutz/PowerShell
.NOTES Author: Markus Fleschutz / License: CC0
#>
try {
Start-Process "mailto:markus@fleschutz.de"
exit 0
} catch {
2020-12-25 11:30:43 +01:00
write-error "ERROR in line $($_.InvocationInfo.ScriptLineNumber): $($Error[0])"
exit 1
}