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

时间:2015-03-14 08:43:00

标签: cordova

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

由于

1 个答案:

答案 0 :(得分:12)

当然,你可以使用mailto

<a href="mailto:name@email.com">Link text</a>

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

<access origin="mailto:*" launch-external="yes" />