mirror of
https://github.com/fleschutz/PowerShell.git
synced 2025-06-30 20:50:02 +02:00
Added new-email.ps1 and open-email-client.ps1
This commit is contained in:
21
Scripts/new-email.ps1
Executable file
21
Scripts/new-email.ps1
Executable file
@ -0,0 +1,21 @@
|
||||
#!/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
|
||||
}
|
15
Scripts/open-email-client.ps1
Executable file
15
Scripts/open-email-client.ps1
Executable file
@ -0,0 +1,15 @@
|
||||
#!/snap/bin/powershell
|
||||
|
||||
# Syntax: ./open-email-client.ps1
|
||||
# Description: starts the default email client
|
||||
# Author: Markus Fleschutz
|
||||
# Source: github.com/fleschutz/PowerShell
|
||||
# License: CC0
|
||||
|
||||
try {
|
||||
Start-Process "mailto:markus@fleschutz.de"
|
||||
exit 0
|
||||
} catch {
|
||||
Write-Error "ERROR in line $($_.InvocationInfo.ScriptLineNumber): $($Error[0])"
|
||||
exit 1
|
||||
}
|
Reference in New Issue
Block a user