<# .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 }