mirror of
https://github.com/fleschutz/PowerShell.git
synced 2024-11-09 01:25:04 +01:00
22 lines
485 B
PowerShell
Executable File
22 lines
485 B
PowerShell
Executable File
#!/snap/bin/powershell
|
|
|
|
# Syntax: ./new-email.ps1 [<address>]
|
|
# Description: starts the default email client to write a new email
|
|
# Author: Markus Fleschutz
|
|
# Source: github.com/fleschutz/PowerShell
|
|
# License: CC0
|
|
|
|
param([string]$emailAddress)
|
|
if ($emailAddress -eq "" ) {
|
|
$emailAddress = "markus@fleschutz.de"
|
|
}
|
|
|
|
try {
|
|
$URL="mailto:$emailAddress"
|
|
Start-Process $URL
|
|
exit 0
|
|
} catch {
|
|
Write-Error "ERROR in line $($_.InvocationInfo.ScriptLineNumber): $($Error[0])"
|
|
exit 1
|
|
}
|