diff --git a/WGneu/Utils.cs b/WGneu/Utils.cs
index 78ed22a..b361b96 100644
--- a/WGneu/Utils.cs
+++ b/WGneu/Utils.cs
@@ -7,6 +7,7 @@ using System.Windows.Media;
using System.Windows;
using System.Windows.Controls;
using System.IO;
+using System.Diagnostics;
namespace WGneu {
public static class Utils {
@@ -56,6 +57,13 @@ namespace WGneu {
});
}
+ public static void MailTo(string emailAddress) {
+ Process.Start(new ProcessStartInfo() {
+ FileName = $"mailto:{emailAddress}",
+ UseShellExecute = true,
+ });
+ }
+
public sealed class TemporaryFile : IDisposable {
private int Usages = 0;
public string FilePath { get; private set; }
diff --git a/WGneu/Windows/MemberListWindow.xaml b/WGneu/Windows/MemberListWindow.xaml
index 5cbdb10..26e18f4 100644
--- a/WGneu/Windows/MemberListWindow.xaml
+++ b/WGneu/Windows/MemberListWindow.xaml
@@ -51,7 +51,8 @@