adonis-mail-provider
v2.0.2
Published
Mail provider for adonis framework and has support for all common mailing services to send emails
Downloads
89
Readme
Adonis Mail
:pray: This repository contains email sending facilities for adonis framework.
Mail provider has support for several drivers to send email from your adonis app.
- SMTP
- Amazon SES
- Mandrill
- Log ( for testing emails )
Table of Contents
Team Members
- Harminder Virk (Caffiene Blogging) [email protected]
Getting Started
$ npm i --save adonis-mail-provider
next register the provider in your bootstrap/app.js
file.
const providers = [
'adonis-mail-provider/providers/MailProvider'
]
const aliases = {
Mail: 'Adonis/Addons/Mail'
}
Example configuration file can be downloaded from examples/mail.js, and should be kept inside config/mail.js
.
Contribution Guidelines
In favor of active development we accept contributions for everyone. You can contribute by submitting a bug, creating pull requests or even improving documentation.
You can find a complete guide to be followed strictly before submitting your pull requests in the Official Documentation.