You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi,
I have a universal cordova app for iOS and Windows 10 UWP.
I have the following code when email button is clicked -
$cordovaEmailComposer.isAvailable().then(function () {
var email = {
to: '',
cc: '',
bcc: [],
attachments: emailImageArray,
subject: subject,
body: emailBody,
isHtml: true
};
$cordovaEmailComposer.open(email).then(null, function () {
console.log("Email ready cancel", emailBody);
});
}, function () {
console.log("Email not ready");
});
}
It works fine for iOS but for Windows it does not open the draft or throw any error.
plugin version for Windows app - 0.8.7
cordova-windows - 4.3.0
cordova - 6.0.0
Please let me know how to fix this one.
Thanks!
The text was updated successfully, but these errors were encountered:
Hi,
I have a universal cordova app for iOS and Windows 10 UWP.
I have the following code when email button is clicked -
It works fine for iOS but for Windows it does not open the draft or throw any error.
plugin version for Windows app - 0.8.7
cordova-windows - 4.3.0
cordova - 6.0.0
Please let me know how to fix this one.
Thanks!
The text was updated successfully, but these errors were encountered: