Important: This documentation covers Yarn 1 (Classic).
For Yarn 2+ docs and migration guide, see yarnpkg.com.

Package detail

cordova-plugin-email-composer

katzer22.6kApache-2.00.10.1TypeScript support: definitely-typed

Provides access to the standard interface that manages the editing and sending an email message

appplant, email, ecosystem:cordova, cordova-ios, cordova-osx, cordova-android, cordova-windows, cordova-browser

readme

Cordova Email Plugin
npm version Code Climate PayPayl donate button

The plugin provides access to the standard interface that manages the editing and sending an email message. You can use this view controller to display a standard email view inside your application and populate the fields of that view with initial values, such as the subject, email recipients, body text, and attachments. The user can edit the initial contents you specify and choose to send the email or cancel the operation.

Using this interface does not guarantee immediate delivery of the corresponding email message. The user may cancel the creation of the message, and if the user does choose to send the message, the message is only queued in the Mail application outbox. This allows you to generate emails even in situations where the user does not have network access, such as in airplane mode. This interface does not provide a way for you to verify whether emails were actually sent.

Supported Platforms

  • Android
  • Browser
  • iOS
  • OSX
  • Windows

Installation

The plugin can be installed via Cordova-CLI and is publicly available on NPM.

Execute from the projects root folder:

$ cordova plugin add cordova-plugin-email-composer

Or install a specific version:

$ cordova plugin add cordova-plugin-email-composer@VERSION

Or install the latest master version:

$ cordova plugin add https://github.com/katzer/cordova-plugin-email-composer.git

Or install from local source:

$ cordova plugin add <path> --nofetch --nosave

Usage

The plugin creates the object cordova.plugins.email and is accessible after the deviceready event has been fired.

document.addEventListener('deviceready', function () {
    // cordova.plugins.email is now available
}, false);

All properties are optional. After opening the draft the user may have the possibilities to edit the draft from the UI. The callback comes without arguments.

cordova.plugins.email.open({
    from:       String, // sending email account (iOS only)
    to:          Array, // email addresses for TO field
    cc:          Array, // email addresses for CC field
    bcc:         Array, // email addresses for BCC field
    attachments: Array, // file paths or base64 data streams
    subject:    String, // subject of the email
    body:       String, // email body
    isHtml:    Boolean  // indicats if the body is HTML or plain text (primarily iOS)
}, callback, scope);

The following example shows how to create and show an email draft pre-filled with different kind of properties:

cordova.plugins.email.open({
    to:      'max@mustermann.de',
    cc:      'erika@mustermann.de',
    bcc:     ['john@doe.com', 'jane@doe.com'],
    subject: 'Greetings',
    body:    'How are you? Nice greetings from Leipzig'
});

Of course its also possible to open a blank draft:

cordova.plugins.email.open();

Its possible to specify the email client. If the phone isn´t able to handle the specified scheme it will fallback to the system default:

cordova.plugins.email.open({ app: 'mailto', subject: 'Sent with mailto' });

On Android the app can be specified by either an alias or its package name. The alias gmail is available by default.

// Add app alias
cordova.plugins.email.addAlias('gmail', 'com.google.android.gm');

// Specify app by name or alias
cordova.plugins.email.open({ app: 'gmail', subject: 'Sent from Gmail' });

Issues with AndroidX

If you have issues with AndroidX, simply install the extra plugin

cordova plugin add cordova-plugin-androidx-adapter

For Ionic/Capacitor you can also try

npm install jetifier
npx jetify
npx cap sync android

HTML and CSS

Only the built-in email app for iOS does support HTML and CSS. Some Android clients support rich formatted text.

Use isHtml with caution! It's disabled by default.

Attach Base64 encoded content

The code below shows how to attach an base64 encoded image which will be added as a image with the name icon.png.

cordova.plugins.email.open({
    subject:     'Cordova Icon',
    attachments: ['base64:icon.png//iVBORw0KGgoAAAANSUhEUgAAADwAAAA8CAYAAAA6...']
});

Attach files from the device storage

The path to the files must be defined absolute from the root of the file system. On Android the user has to allow the app first to read from external storage!

cordova.plugins.email.open({
    attachments: 'file:///storage/sdcard/icon.png', //=> storage/sdcard/icon.png (Android)
});

Attach native app resources

Each app has a resource folder, e.g. the res folder for Android apps or the Resource folder for iOS apps. The following example shows how to attach the app icon from within the app's resource folder.

cordova.plugins.email.open({
    attachments: 'res://icon.png' //=> res/mipmap/icon (Android)
});

Attach assets from the www folder

The path to the files must be defined relative from the root of the mobile web app folder, which is located under the www folder.

cordova.plugins.email.open({
    attachments: [
        'file://img/logo.png', //=> assets/www/img/logo.png (Android)
        'file://css/index.css' //=> www/css/index.css (iOS)
    ]
});

Attach files from the internal app file system

The path must be defined relative from the directory holding application files.

cordova.plugins.email.open({
    attachments: [
        'app://databases/db.db3', //=> /data/data/<app.package>/databases/db.db3 (Android)
        'app://databases/db.db3', //=> /Applications/<AppName.app>/databases/db.db3 (iOS, OSX)
        'app://databases/db.db3', //=> ms-appdata:///databases/db.db3 (Windows)
    ]
});

Device Configuration

The email service is only available on devices which have configured an email account. On Android the user has to allow the app first to access account informations.

cordova.plugins.email.hasAccount(callbackFn);

To check for a specific mail client, just pass its uri scheme on iOS, or the package name on Android as first parameter:

cordova.plugins.email.hasClient('gmail', callbackFn);

For Android only, it's possible to get a list of all installed email clients:

cordova.plugins.email.getClients(function (apps) {
    cordova.plugins.email.open({ app: apps[0] });    
});

Permissions

Some functions require permissions on Android. The plugin itself does not add them to the manifest nor does it ask for by itself at runtime.

Permission Description
cordova.plugins.email.permission.READ_EXTERNAL_STORAGE Is needed to attach external files file:/// located outside of the app's own file system.
cordova.plugins.email.permission.GET_ACCOUNTS Without the permission the hasAccount() function wont be able to look for email accounts.

To check if a permission has been granted:

cordova.plugins.email.hasPermission(permission, callbackFn);

To request a permission:

cordova.plugins.email.requestPermission(permission, callbackFn);

Note: The author of the app has to make sure that the permission is listed in the manifest.

Contributing

  1. Fork it
  2. Create your feature branch (git checkout -b my-new-feature)
  3. Commit your changes (git commit -am 'Add some feature')
  4. Push to the branch (git push origin my-new-feature)
  5. Create new Pull Request

License

This software is released under the Apache 2.0 License.

Made with :yum: from Leipzig

© 2013 appPlant GmbH

changelog

ChangeLog

Version 0.9.2 (24.01.2019)

  • Fix package android.support.v4.content does not exist

Version 0.9.1 (13.12.2018)

  • Fix line breaks (\r\n) on Android

Version 0.9.0 (13.12.2018)

  • [feature:] Added getClients that returns a list of available email clients (Android)
  • [change]: Replace isAvailable through hasClient and hasAccount.
  • [change]: Plugin does not add any permissions by itself like GET_ACCOUNTS or READ_EXTERNAL_STORAGE.
  • [change]: isAvailable does not request for missing permission (GET_ACCOUNTS).
  • [change]: hasPermission takes 3 arguments now. The first one has to be a value of cordova.plugins.email.permission.
  • [change]: requestPermission takes 3 arguments now. The first one has to be a value of cordova.plugins.email.permission.
  • [change]: Remove support lib from being installed (Android).
  • [change]: Remove deprecated namespace plugin.email.
  • [change]: Remove deprecated support for isHTML.
  • [change]: Change default value for isHtml to false.
  • [change]: Remove Android specific type property.
  • [enhancement]: Skip chooser if there's only the default app (#302)
  • [enhancement]: Improve chooser to only display email clients.
  • [enhancement]: Add from to specify the sending email account.
  • [bugfix:] Do not open old email draft [fixes #303]

Version 0.8.15 (08.02.2018)

  • Fix iOS not working if app: wasn't specified.
  • Fix attachments: to accept a string.

Version 0.8.14 (31.01.2018)

  • Fix wrong uri encoding for browser platform.

Version 0.8.13 (25.01.2018)

  • Fix potential wrong result for isAvailable on iOS+OSX by using scheme other then mailto:
  • Fix open app from background thread by using scheme other then mailto:

Version 0.8.12 (09.01.2018)

  • Internal code refactoring
  • Added type property to specify the content type (#283)

Version 0.8.11 (25.10.2017)

  • Apply URL encoding when constructing mailto: link (#273)

Version 0.8.10 (25.09.2017)

  • Open gmail on ios and macos [fixes #272]
  • Added alias for outlook
  • Fix warnings with iOS 11

Version 0.8.9 (14.09.2017)

  • Fix opening email with file attachment causes app crash on Android 8 (#270)

Version 0.8.8 (07.09.2017)

  • Fix crash on iOS if attachment could not be found
  • Fix wrong plugin ID in package.json

Version 0.8.7 (26.06.2017)

  • Add support for an app:// URL #158 (Android)
  • Add support for an app:// (iOS, OSX, Windows)

Version 0.8.6 (12.06.2017)

  • Fixed issue with Android 4.x

Version 0.8.5 (09.06.2017)

10 commits including bug fixes and enhancements:

  • [enhancement]: Support for osx platform
  • [enhancement]: Added isAvailable2 which works equal except the callback args are in reverse order.
  • [enhancement]: Fixed possible attachment issues some Android email clients.

Version 0.8.4 (06.06.2017)

25 commits including bug fixes and enhancements:

  • [change]: Skip availability checks with email.open()
  • [change]: Upgrade minimum required engine versions
  • [enhancement]: Treat callback functions as optional
  • [enhancement]: Support for Android API 23 Permission API
  • [enhancement]: Test the account name if they match the email pattern (#180)
  • [enhancement]: Support newest cordova platform versions
  • [enhancement]: Use @synthesize to prevent EXC_BAD_ACCESS errors with non-ARC code (#207)
  • [bugfix]: res:// uri not resolved on cordova-android@6 (6334d0)
  • [bugfix]: Require old plugin id for windows platform (#176)
  • [bugfix]: Memory leak for iOS

Version 0.8.3 (01.03.2016)

63 commits including bug fixes and enhancements:

  • [change:] New plugin ID: cordova-plugin-email-composer
  • [enhancement:] Published on npm
  • [enhancement:] Allowed the chooser header text to be configured (#113)
  • [enhancement:] Plain mailto: support
  • [enhancement:] Specify email client using app: flag
  • [enhancement:] More samples in Sample-App
  • [bugfix:] Build issues with iOS and Android
  • [bugfix:] Compatibility with newest OS and cordova platform versions
  • [bugfix:] Crash on iOS when presenting view controller from background (#169)
  • [bugfix:] Crash on iOS when no email account is setup
  • [bugfix:] Resolved issues with attachments on all platforms
  • ...

Version 0.8.2 (01.03.2015)

  • Added new namespace cordova.plugins.email
    Note: The former plugin.email namespace is now deprecated and will be removed with the next major release.
  • [change:] Unified absolute: and relative: to file:
  • [change:] Renamed isServiceAvailable to isAvailable
  • [feature:] app: allows to specify target mail app on Android
  • [feature:] res: prefix for native ressource attachments
  • [enhancement:] Support attachments on Windows Phone 8.1
  • [enhancement:] open supports callbacks
  • [enhancement:] isHTML can be used next isHtml
  • [enhancement:] Set mime type to binary if unknown
  • [bugfix:] Defaults were ignored

Version 0.8.1 (06.04.2014)

  • [enhancement:] Make use Cordovas NSData+Base64 extension.
  • [enhancement:] Log error message if attachment path does not exist.
  • [feature:] Add support for amazon fire
  • [bugfix:] Fix INSTALL_FAILED_CONFLICTING_PROVIDER error
  • [bugfix:] relative:// attachment path wasnt working due to a missing permission.
  • [bugfix:] base64:// attachment path looked up in the wrong directory.
  • [enhancement:] relative:// supports now any file types and not only images.
  • [change:] relative:// URI's even for Android need a file extension.

Version 0.8.0 (02.03.2014)

  • [enhancement:] New absolute:// and relative:// attachment prefixes.
  • [feature:] New base64:// prefix to attach base64 encoded data streams.

Version 0.7.2 (01.03.2014)

  • [enhancement:] Attachments are added with their real name.

Version 0.7.1 (17.12.2013)

  • [bugfix:] Only the last attachment was added to the email composer on android.

Version 0.7.0 (05.12.2013)

  • Release under the Apache 2.0 license.
  • [change:] Removed the callback property from the open interface.
  • [change:] Renamed the properties recipients, ccRecipients, bccRecipients.
  • [bugfix:] Plugin under WP8 throws an error, if recipients were given as arrays.
  • [enhancement:] open does not block the ui thread on iOS & Android anymore.

Version 0.6.0 (17.11.2013)

  • Added WP8 support
  • [deprecated:] The callback property will be removed with v0.7.0.

Version 0.4.2 (17.11.2013)

  • [feature:] Added alias openDraft to the open interface.

Version 0.4.1 (03.11.2013)

  • [bugfix]: On Android, the isServiceAvailable() interface has returned string values instead of boolean values.
  • [bugfix]: Sometimes the device said that no email app is available because of the missing mime type.

Version 0.4.0 (20.08.2013)

  • Added Android support
    Based on the EmailComposerWithAttachments Android plugin made by guidosabatini

Version 0.2.1 (15.08.2013)

  • [bugfix]: Email was not send in HTML format, if the isHtml flag was set.
  • [bugfix]: email.open() without a parameter throw an error.

Version 0.2.0 (13.08.2013)

  • Added iOS support
    Based on the EmailComposer(WithAttachments) iOS plugin made by Randy McMillan and guidosabatini