最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

javascript - Cordova - Open native email app from button click - Stack Overflow

programmeradmin1浏览0评论

When writing a native IOS app for example, you can open the native "Mail" app from a button click within an app. The email will e up pre-filled with certain data (send-to address, subject, body, etc.).

How can I simulate this across all devices using HTML5/Javascript in my cordova app?

When writing a native IOS app for example, you can open the native "Mail" app from a button click within an app. The email will e up pre-filled with certain data (send-to address, subject, body, etc.).

How can I simulate this across all devices using HTML5/Javascript in my cordova app?

Share Improve this question asked Nov 26, 2014 at 3:06 Alan WestAlan West 31 silver badge3 bronze badges 1
  • you can also try this plugin – turtle Commented Nov 26, 2014 at 5:52
Add a ment  | 

2 Answers 2

Reset to default 8

Using HTML5, you can do this with an anchor tag in your .html file. Here is an example:

<a href="mailto:[email protected]?subject=Example Subject 
&body=Thanks for the help!">Send an email</a>

This will work across all devices and resort to native functionality to handle the email task.

Also, since cordova 3.6.3 you alo need to include the following permission in your config.xml.

<access origin="mailto:*" launch-external="yes"/>
发布评论

评论列表(0)

  1. 暂无评论