Skip to content

hazemhagrass/EmailComposer

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

19 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

EmailComposer with attachments handling

This Plugin is inspired from EmailComposer plugin here.

This plugin allows you to send html email to any email accounts you want including attachments

This has been successfully tested from Cordova 2.2.0 through to version 6.3.

Callable interface:

	window.plugins.EmailComposer.showEmailComposerWithCallback(callback,subject,body,toRecipients,ccRecipients,bccRecipients,isHtml,attachments);

or

  window.plugins.EmailComposer.showEmailComposer(subject,body,toRecipients,ccRecipients,bccRecipients,isHtml,attachments);

Installation

for Cordova >= 3.0.0

    phonegap local plugin add https://github.com/hazemhagrass/EmailComposer.git
    cordova plugin add https://github.com/hazemhagrass/EmailComposer.git

for Cordova >= 5.0.0

    cordova plugin add com-badrit-emailcomposer

ATTENTION: the callback will never be triggered, it's here only for consistency with the iOS plugin

Parameters:

  • callback: just for compatability with the old plugin and will be updated to work soon
  • subject: a string representing the subject of the email; could be empty
  • body: a string representing the email body (could be HTML code, in this case set isHtml to true); could be empty
  • toRecipients: array containing all the email addresses for TO field; could be empty
  • ccRecipients: array containing all the email addresses for CC field; could be empty
  • bccRecipients: a js array containing all the email addresses for BCC field; could be empty
  • isHtml: a bool value indicating if the body is HTML or plain text
  • attachments: a js array containing all full paths to the files you want to attach; could be empty

Example

window.plugins.EmailComposer.showEmailComposerWithCallback(null,"Look at this photo","Take a look at <b>this<b/>:",["example@email.com", "johndoe@email.org"],[],[],true,["_complete_path/image.jpg", "_other_complete_path/file.zip"]);

About

EmailComposer

Resources

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Objective-C 53.8%
  • Java 35.3%
  • JavaScript 10.9%