Cordova EmailComposer Plugin help!

Hi. I am trying to implement the Email-Composer Plugin of Cordova in Android. However after going through hours of searching and tuts, I did not exactly find on how to implement it being new to the platform.
The link I’ve been following can be found here. And another tutorial here.

Given below is my HTML code-

 <!DOCTYPE html>
<html>

<meta name="viewport" content="width=device-width, initial-scale=1">
<head>
<title>Compose Thread</title>
</head>



<body>

<script type="text/javascript" src="js/email_composer.js"></script>
<script>
	

	window.plugin.email.isServiceAvailable(
		function (isAvailable) {
			// alert('Service is not available') unless isAvailable;
		}
	);

	window.plugin.email.open({
    to: ,
    cc: ,
    bcc:,
    subject:,
    body:
});
</script>

</body>
</html>

Can someone please help me out of this ?

This topic was automatically closed 91 days after the last reply. New replies are no longer allowed.