Skip to content

Commit

Permalink
Added MailComposer plugin
Browse files Browse the repository at this point in the history
  • Loading branch information
sanchitbahal committed May 25, 2013
1 parent 6cfef0e commit 238946f
Showing 1 changed file with 39 additions and 0 deletions.
39 changes: 39 additions & 0 deletions iOS/MailComposer/README.md
@@ -0,0 +1,39 @@
# Mail Composer

A Cordova plugin to launch mail client with attachment.
Compatible with Cordova >= 2.5.0

### Hosted at

https://github.com/sbahal/mail-composer

### Steps to install

1. Install [cordova-plugman](https://github.com/apache/cordova-plugman).
2. ```cd``` into your project directory.
3. Execute the following command:

```
plugman --platform ios --project . --plugin https://github.com/sbahal/mail-composer.git
```

### Steps to uninstall

```
plugman --uninstall --platform ios --project . --plugin org.cordova.plugins.MailComposer
```

### Usage

```
mailComposer.sendMail([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.

### Example

```
mailComposer.sendMail(['/www/docs/doc1.pdf', 'Foo Document']);
```

0 comments on commit 238946f

Please sign in to comment.