showComposeNewEmailAsync "Not implemented" from Cordova plugin call.

Paul Hemans

New member
Mar 8, 2015
1
0
0
Visit site
On a Windows 8.1 Phone device a Cordova app plugin is accessing showComposeNewEmailAsync here is the code;

exports.open = function (success, error, args) {
var props = args[0],
email = exports.getDraftWithProperties(props);

Windows.ApplicationModel.Email.EmailManager
.showComposeNewEmailAsync(email)
.then(function () {
success();
},
function (err) {
error(err);
})
.done(success,
function (err) {
error(err);
});
};

I get an error of "Not Implemented", it would seem from other posts that this method is available on this platform. What am I missing?
 

Members online

Forum statistics

Threads
323,249
Messages
2,243,516
Members
428,048
Latest member
vascro