diff --git a/ios/zeus/Info.plist b/ios/zeus/Info.plist
index 93ae2842a..5c648357a 100644
--- a/ios/zeus/Info.plist
+++ b/ios/zeus/Info.plist
@@ -124,5 +124,10 @@
UIViewControllerBasedStatusBarAppearance
+ LSApplicationQueriesSchemes
+
+ mailto
+
+
diff --git a/views/Settings/Help.tsx b/views/Settings/Help.tsx
index a02da9b4b..4616ace79 100644
--- a/views/Settings/Help.tsx
+++ b/views/Settings/Help.tsx
@@ -63,7 +63,7 @@ function Help(props: HelpProps) {
}}
onPress={() => {
if (item.email) {
- const url = `to:${item.email}`;
+ const url = `mailto:${item.email}`;
Linking.canOpenURL(url).then(
(supported: boolean) => {
if (supported) {