mirror of
https://github.com/fleschutz/PowerShell.git
synced 2024-11-08 17:14:28 +01:00
24 lines
484 B
PowerShell
Executable File
24 lines
484 B
PowerShell
Executable File
<#
|
|
.SYNOPSIS
|
|
new-email.ps1 [<address>]
|
|
.DESCRIPTION
|
|
Opens the default email client to write a new email
|
|
.EXAMPLE
|
|
PS> ./new-email
|
|
.NOTES
|
|
Author: Markus Fleschutz · License: CC0
|
|
.LINK
|
|
https://github.com/fleschutz/PowerShell
|
|
#>
|
|
|
|
param([string]$EmailAddress = "markus@fleschutz.de")
|
|
|
|
try {
|
|
$URL="mailto:$EmailAddress"
|
|
Start-Process $URL
|
|
exit 0 # success
|
|
} catch {
|
|
"⚠️ Error: $($Error[0]) ($($MyInvocation.MyCommand.Name):$($_.InvocationInfo.ScriptLineNumber))"
|
|
exit 1
|
|
}
|