Hello,
For an About page in my app, I am using a Webview and an HTML file added to my project.
My HTML file is very simple and straightforward, but it has one Mailto link and one HTTP link to a page on my Internet site.
The HTTP link works properly, but the Mailto link opens a page saying:
webpage not available
the webpage at mailto: [email protected]?Subject= myapp%20 might be temporarily down or it may have moved permanently to a new address.
The same file works properly, as expected, in Firefox.
The code I use to open my webpage is borrowed from this forum
str = File.GetText(File.DirAssets, "myapp.html")
WebView1.LoadHtml(str)
Is a Mailto link allowed in the Webview?
Thanks,
Barry.
For an About page in my app, I am using a Webview and an HTML file added to my project.
My HTML file is very simple and straightforward, but it has one Mailto link and one HTTP link to a page on my Internet site.
The HTTP link works properly, but the Mailto link opens a page saying:
webpage not available
the webpage at mailto: [email protected]?Subject= myapp%20 might be temporarily down or it may have moved permanently to a new address.
The same file works properly, as expected, in Firefox.
The code I use to open my webpage is borrowed from this forum
str = File.GetText(File.DirAssets, "myapp.html")
WebView1.LoadHtml(str)
Is a Mailto link allowed in the Webview?
Thanks,
Barry.