Socket
Book a DemoInstallSign in
Socket

react-native-email

Package Overview
Dependencies
Maintainers
1
Versions
8
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

react-native-email

Send a email using the Linking API

Source
npmnpm
Version
1.0.0
Version published
Weekly downloads
897
-21.11%
Maintainers
1
Weekly downloads
 
Created
Source

react-native-email

Send a email using the Linking API

npm package version npm downloads standard JS linter prettier code formatting travis ci build status project license make a pull request


Built with ❤︎ by tiaanduplessis and contributors

Table of Contents

Table of Contents
  • Install
  • Usage
  • Contribute
  • License
  • Install

    $ npm install react-native-email
    # OR
    $ yarn add react-native-email
    

    Usage

    import React from 'react'
    import { StyleSheet, Button, View } from 'react-native'
    import email from 'react-native-email'
    
    export default class App extends React.Component {
        render() {
            return (
                <View style={styles.container}>
                    <Button title="Send Mail" onPress={this.handleEmail} />
                </View>
            )
        }
    
        handleEmail = () => {
            const to = ['tiaan@email.com', 'foo@bar.com'] // string or array of email addresses
            email(to, {
                // Optional additional arguments
                cc: ['bazzy@moo.com', 'doooo@daaa.com'], // string or array of email addresses
                bcc: 'mee@mee.com', // string or array of email addresses
                subject: 'Show how to use',
                body: 'Some body right here'
            }).catch(console.error)
        }
    }
    
    const styles = StyleSheet.create({
        container: {
            flex: 1,
            backgroundColor: '#fff',
            alignItems: 'center',
            justifyContent: 'center'
        }
    })
    

    This results to:

    Contributing

    Contributions are welcome!

    • Fork it.
    • Create your feature branch: git checkout -b my-new-feature
    • Commit your changes: git commit -am 'Add some feature'
    • Push to the branch: git push origin my-new-feature
    • Submit a pull request :D

    Or open up a issue.

    License

    Licensed under the MIT License.

    FAQs

    Package last updated on 03 Oct 2017

    Did you know?

    Socket

    Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

    Install

    Related posts