├── .editorconfig ├── .gitattributes ├── .gitignore ├── LICENSE ├── README.md ├── index.js ├── package.json ├── pnpm-lock.yaml ├── react-native-email.d.ts └── result.jpeg /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiaanduplessis/react-native-email/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | .idea -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiaanduplessis/react-native-email/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiaanduplessis/react-native-email/HEAD/README.md -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiaanduplessis/react-native-email/HEAD/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiaanduplessis/react-native-email/HEAD/package.json -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiaanduplessis/react-native-email/HEAD/pnpm-lock.yaml -------------------------------------------------------------------------------- /react-native-email.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiaanduplessis/react-native-email/HEAD/react-native-email.d.ts -------------------------------------------------------------------------------- /result.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiaanduplessis/react-native-email/HEAD/result.jpeg --------------------------------------------------------------------------------