diff --git a/HashingTool/Views/AboutDialog.xaml b/HashingTool/Views/AboutDialog.xaml
index 3906faea5f0c023375e25f9f82499f62f98bc6ae..f4e7131916447b9d2ead9c628717c196b85f8662 100644
--- a/HashingTool/Views/AboutDialog.xaml
+++ b/HashingTool/Views/AboutDialog.xaml
@@ -39,7 +39,7 @@
 			</StackPanel>
 			<StackPanel Orientation="Horizontal" Margin="0, 155, 0,0">
 				<TextBlock Text="Support Contact:" Margin="0,0,30,0"/>
-				<TextBlock Text="vecto@jrc.ec.europa.com" Foreground="Blue" TextDecorations="Underline" MouseLeftButtonUp="Supportmail">
+                <TextBlock Text="JRC-VECTO@ec.europa.eu" Foreground="Blue" TextDecorations="Underline" MouseLeftButtonUp="Supportmail">
 					<TextBlock.Style>
 						<Style>
 							<Style.Triggers>
diff --git a/HashingTool/Views/AboutDialog.xaml.cs b/HashingTool/Views/AboutDialog.xaml.cs
index 97b1cd80340730ddd1b3eeb638e3df5b07e77f52..9d68721b884a6b655e6dae20e442ec68fd906b84 100644
--- a/HashingTool/Views/AboutDialog.xaml.cs
+++ b/HashingTool/Views/AboutDialog.xaml.cs
@@ -53,7 +53,7 @@ namespace HashingTool.Views
 
 		private void Supportmail(object sender, MouseButtonEventArgs e)
 		{
-			Process.Start("mailto:vecto@jrc.ec.europa.eu");
+			Process.Start("mailto:JRC-VECTO@ec.europa.eu");
 		}
 	}
 }