A Cordova plugin to launch mail client with attachment.
Compatible with Cordova >= 2.5.0
- Install cordova-plugman.
cd
into your project directory.- Execute the following command:
plugman --platform ios --project . --plugin https://github.com/sbahal/mail-composer.git
plugman --uninstall --platform ios --project . --plugin org.cordova.plugins.MailComposer
mailComposer.composeMail([url, fileName]);
where,
url
: the URL of the file to be attached
fileName
: the name of the file to be attached. The same name would be used as the subject of the mail as well.
mailComposer.composeMail(['/www/docs/doc1.pdf', 'Foo Document']);