having issues with the cordova-plugin-email-composer plugin.
I am able to get the email to be created on IOS, but i am unable to get the to field, or the body field to be populated. Only the subject field it populated.
Here is my function to create the email message
$scope.sendFeedback= function() {
if(window.plugins && window.plugins.emailComposer) {
window.plugins.emailComposer.showEmailComposerWithCallback(function(result) {
console.log(“emai completed”);
},
"contact via app", // Subject
"<h2>Hello Test Email</h2>", // Body
["test@gmail.com","test@test.com"], // To
null, // CC
null, // BCC
true, // isHTML
null, // Attachments
null); // Attachment Data
}
}
would appreciate any insight as to why the email is not be populated correctly
Thanks