I've built a simple jQuery Mobile based app, and trying to compile it with Phonegap. I'd like the users to be able to send some content from the app via email, but I can't figure this out.

My code:

<script type="text/javascript" src="json2.js"></script>
<script type="text/javascript" charset="utf-8" src="phonegap.js"></script>
<script type="text/javascript" src="EmailComposer.js"></script> 
<script src="js/jquery-1.5.min.js"></script>
<script src="js/jquery.mobile-1.0a3.min.js"></script>
<script src="js/jsStuff.js"></script>
<script type="text/javascript" charset="utf-8">

// Wait for PhoneGap to load
//
function onLoad() {
    document.addEventListener("deviceready", onDeviceReady, false);
}

// PhoneGap is ready
//
function onDeviceReady() {
    // Empty
}

// alert dialog dismissed
function alertDismissed() {
    // do something
}

// Show a custom alert
//
function doEmail() {
    window.plugins.emailComposer.showEmailComposer("Subject","PlainTextBody", "recipient,recipient", "ccRecipient", "bccRecipient",false);
}
</script>

<link rel="stylesheet" href="style.css" /> 

And then:

<body onload="onLoad()"> 
<a href="#" onclick="doEmail(); return false;">Send email</a>

This does nothing at all.

What I've done:

  1. Downloaded the EmailComposer plugin.
  2. Move EmailComposer.js to the root of my app (Phonegap project -> www).
  3. Added EmailComposer.h & EmailComposer.m to my project by right-clicking my www folder in Xcode, then "Add" --> "Existing Files..." (REference type: Default, "copy items into destination..." is checked)
  4. Added MessageUI.framework to my project by right clicking my project's target -> "Get info" and adding it to linked libraries.

Any help would be appreciated.

link|improve this question

56% accept rate
Could you add some links about the email composer plugin? Also - use a try-catch block to alert any errors generated by the line calling showEmailComposer – naugtur Feb 21 '11 at 20:34
I think he's using this code: github.com/phonegap/phonegap-plugins/tree/master/iPhone/… – fil maj Feb 21 '11 at 22:45
feedback

6 Answers

Okay, I know this is an old thread but it looks like the correct answer has not been posted. For future readers who may stumble on this:

You have to add the EmailComposer plugin into your PhoneGap.plist file, under plugins add a new row with "EmailComposer" in the left column, and "EmailComposer" in the right column.

link|improve this answer
feedback

As naugtur suggested, try some troubleshooting techniques, like.. does it work if you remove temporarily those custom scripts: jsStuff.js and json2.js? I know they may be required in your app but it may help you locate the source of the problem. Try sending console messages or alerts inside you doEmail function. Hope it helps.

link|improve this answer
feedback

Seems like the problem was related to the way I added the plugin files to the xCode project. If you need extra details: http://groups.google.com/group/phonegap/browse_thread/thread/6fd7d73d3532effd/4ae9daa0b746ceb5#4ae9daa0b746ceb5

link|improve this answer
feedback

I think you have to change it to <a href="javascript:doEmail()">Send Mail</a> , onclick isn“t a iphone event

link|improve this answer
feedback

You must add the plugin into the PhoneGap.plist.

Add a new entry with Key "EmailComposer" and value "EmailComposer"

link|improve this answer
feedback

Add to PhoneGap.plist Plugins: key 'com.phonegap.emailComposer' value 'EmailComposer'.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.