🙏 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 )
- Harminder Virk (Caffiene Blogging) virk.officials@gmail.com
$ 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
.
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.