PowerShell/Scripts/new-email.ps1
2021-10-16 16:50:10 +02:00

26 lines
584 B
PowerShell
Executable File

<#
.SYNOPSIS
Opens the default email client to write a new email
.DESCRIPTION
This script opens the default email client to write a new email.
.PARAMETER EmailAddress
Specifies the email address fill in
.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
}