
If you are updating an existing Nylas theme for Mailspring here is a To startĬreating a theme, clone the theme starter! There are many more which have been built by community developers. Mailspring comes stock with a few beautiful themes, and The Mailspring user interface is styled using CSS, which means it's easy to You can share and browse Mailspring Plugins, and discuss plugin development "sideload" the plugins into the app by downloading them and copying them into Follow the Getting StartedĪ plugin "store" like the Chrome Web Store is coming soon, and will make itĮasy for other users to discover plugins you create. Plugins lie at the heart of Mailspring and give it its powerful features.īuilding your own plugins allows you to integrate the app with other tools,Įxperiment with new workflows, and more. Run the following commands from the root directory of the Mailspring repository:
MAILSPRING GITHUB INSTALL
To install all dependencies and run Mailspring from its source code, Learn from other people doing development. Theme, and submitting pull requests to the project itself. Welcome! There are three ways to contribute: building a plugin, building a You can find community-based help and discussion with other Mailspring users on our
MAILSPRING GITHUB MAC OS
You can download compiled versions of Mailspring for Windows, Mac OS X, and All of these features run in the client - Mailspring does not send Of email: link tracking, read receipts, mailbox analytics, contact and company With a monthly subscription, adds even more features for people who send a ton Mailspring comes packed with powerful features like Unified Inbox, Snooze, Send

For convenience, however, when you set up your development environment, Mailspring uses the latest version of the sync engine we've shipped for your platform so you don't need to pull sources or install its compile-time dependencies. It is open source (GPLv3) and written in C++ and C. Mailspring's sync engine is spawned by the Electron application and runs locally on your computer. Check out CONTRIBUTING.md to get started! Mailspring's UI is open source (GPLv3) and written in TypeScript with Electron and React - it's built on a plugin architecture and was designed to be easy to extend. It also has an entirely revamped composer and other great new features.


It uses roughly half the RAM and CPU of Nylas Mail and idles with almost zero "CPU Wakes", which translates to great battery life.
MAILSPRING GITHUB CODE
It's faster, leaner, and shipping today! It replaces the JavaScript sync code in Nylas Mail with a new C++ sync engine based on Mailcore2. In the future, Mailspring may automatically disable packages when their React components throw exceptions.Mailspring is a new version of Nylas Mail maintained by one of the original authors. Instead of your component triggering a React Invariant exception in the application, an exception notice will be rendered in place of the unsafe component. On other platforms, you might subclass, they will be wrapped in a component that prevents exceptions in their React render and lifecycle methods from impacting your component. Keep in mind that React's Component model is based on composition rather than inheritance. To use a standard component, require it from nylas-component-kit and use it in your component's render method. Wrapping standard components makes it easy to build rich interfaces that are consistent with the rest of the Mailspring platform. Many of the standard components listen for key events, include considerations for different platforms, and have extensive CSS. Mailspring provides a set of core React components you can use in your packages. Using React's JSX syntax is optional, but both JSX and CJSX (CoffeeScript) are available.įor a quick introduction to React, take a look at Facebook's Getting Started with React. Packages that want to extend the Mailspring interface should use React.

Mailspring uses React to create a fast, responsive UI.
