有没有办法在Phonegap上打开默认电子邮件客户端,就像使用href ="tel:"方法一样?

Joh*_*ohn 11 cordova

我看到插件https://github.com/katzer/cordova-plugin-email-composer#examples,但我想知道是否有任何方法可以点击一个类似于通话功能的href href="tel:1234543",它会打开允许您选择的屏幕手机上的电子邮件应用?因为我不需要在App中发送电子邮件.

谢谢

jce*_*ile 12

当然,你可以使用mailto

<a href="mailto:name@email.com">Link text</a>
Run Code Online (Sandbox Code Playgroud)

您可能必须将此行添加到config.xml

<access origin="mailto:*" launch-external="yes" />
Run Code Online (Sandbox Code Playgroud)