Mail to is not opening for the second time in ios app

0
Hi All,  In our app we are having mailto tag <a href=\"mailto&#58;%20kkarthiha@gamil.com\">Karthiha K</a> inside text field.  After displaying the text a hyperlink is created in the page .In ios if we are clicking the hyperlink for the first time mail client is opened and we are able to send the mail,but if we are clicking the link again no action is happening.  Have added these settings in config.xml too.  <allow-navigation href="mailto:*"/>  <access origin="mailto:*" launch-external="yes"/>  <allow-intent href="mailto:*" />  If we are long press the link functionality is working as expected.please refer https://stackoverflow.com/questions/36046107/ios-app-mailto-href-link-will-only-work-with-long-press Is there a solution to open the mail link in normal click itself? Thanks,  K.Karthiha
asked
1 answers
1

This isn't a Mendix issue but rather an iOS issue, but you need to add 

target="_blank"

for it to work consistently in your tag. Just a heads up.

answered