mailto: for gmail etc from mobile device for angularjs web based application - html

I am working on an responsive web application where it is required to send mail,on browser if I am trying to do so it opens outlook using mailto: option,but it mobile it's not performing any operation as outlook is not available,what are the options to send mail via gmail or something when I open webpage on mobile device.
Kindly suggest

Related

Open Registration link sent by another web app in the Browser

I have a web app running in Browser through which I can send Registration links. The registration link is received in Gmail. When a user, accessing the link from a mobile device, the link opens in Gmail in-app browser.
I want the link to be opened in user's default browser.
How can I achieve this?
Note: Do not suggest changing Gmail settings. Suggest code related changes only

mail doesnt show embed images properly on some browsers

Here's the thing, I want to send some text and pictures in a email, but decide what image to use AFTER I send the e-mail (Yeah, it sounds pointless and confusing, but it isn't pointless for the use I want to give it, believe me) so this was my idea:
I send the mail in html format using an embed image like this (I'm gonna use a real image I'm trying to send):
<img src="http://rodrigophp.byethost15.com/CAS/1/Tex1.png">
After the mail is sent, I go to a web I programmed, and using some php the desired image gets copied to the "/CAS/1/" directory, and renamed to "Tex1.png".
It all worked just fine about half a year ago, when I opened the recieved mail (after I set what image I wanted, to avoid browser's cache) it all worked perfectly.
But recently I tried it again, and it works If I see the mail recieved in gmail:
Gmail shows properly
But when I open it in outlook website or from my iOS devices, images won't show (and yes, I have the "download images" setting activated in iOS):
Outlook mail and iOS mail don't show the image (Tested on iPhone 5 and iPad 4 both iOS 9.2.1
I have no idea what's going on, it's like outlook web and iOS mail app can't access the URL, but it's clearly accesible for google mail web (but not if I open my gmail account in my mobile phone. The same mail, in the same account, can be seen on browser but can't be seen from Mail app.)
What's going on here? any ideas how to make it work? It worked perfectly for all of them about half a year ago!

The tel URI for Telephone Numbers in mobile mail services (Gmail,Yahoo Mail, Thunderbird etc.)

I have created a web page with a tel scheme link, this links works fine when the web page is opened in the mobile browser.
I want to send this webpage as a mail body like a e-mailer, using emailtheweb.com where it captures the webpage and sends it as the webpage in e-mail body.
When i open the mail in my gmail app on android or ios and click the link created with the tel scheme functionality it wont work. Rather it redirects me to the link in a web browser of mobile example: www.xyz.com/tel:+000000000
Is there a way to achieve this functionality? Where after clicking the link in the gmail app it can call the number?
Thanks in advance. :)

Open link in mobile browser(safari) instead of Facebook native browser (html base)

Im developing a web with facebook share link function. I notice facebook mobile apps will open shared link in its own browser, instead of mobile broswer (IE. safari, chrome and so on). Is there any control on this able us to force facebook open the link in mobile browser?
No. The only reliable workaround is if you use the web app with an iOS app, and all users install that iOS app, you can send users to your iOS app to accomplish that task which isn't a great workaround.
An easier but still not optimal solution would be to detect the Facebook browser in the user-agent string, and display a message to prompt users to visit the URL in the mobile browser.

UIWebView email hyperlink is not working on device

I am displaying a HTML page in my iPhone app. The HTML page has few Email addresses. In Mac desktop browser, if the same HTML page is opened and if i click on email address, MAC machines mailbox is opened to compose a new email. Whereas in iPhone, on clicking the email address it is trying to load the webView thinking it as a link.
How come it is working on MAC browser and not in iPhone app.
Source in HTML is :
customerinfo#mycompany.com
If i try to handle using MFMailControlViewController, it works. But my real question is, how come MAC desktop launching mail box and iPhone doesn't.
Thanks
Jithen
Go to interface builder to Web View settings. You need to enable Addresses and Links detection.
or
in the code:
webView.dataDetectorTypes = UIDataDetectorTypeAll;