jovo-plugin-error-email

Jovo plugin to send out emails if an error occurs.


Keywords
jovo, plugin, error, email
License
MIT
Install
npm install jovo-plugin-error-email@2.0.2

Documentation

Example

Installation

If you are using the Jovo Framework version < 2.0.0, please checkout the v1 branch here

$ npm install jovo-plugin-error-email --save

In your Jovo project:

const {EmailErrorPlugin} = require('jovo-plugin-error-email');

const app = new App();

app.use(
    // other plugins, platforms, etc.
    new EmailErrorPlugin()
);
module.exports = {
    // other configurations
    plugin: {
        EmailErrorPlugin: {
            fromEmail: 'fromEmail', // required
            toEmail: 'toEmail', // required
            subject: 'subject',
            awsConfig: {
                accessKeyId: 'access_key_id', // required
                secretAccessKey: 'secret_access_key', // required
                region: 'region' // required
            }
        },
        // other plugins
    }
};

The plugin works with the Amazon Simple Email Service and nodemailer. As you saw above you need to provide the credentials to an AWS account, which has to have the following policy attached:

{
    "Statement": [
        {
            "Effect": "Allow",
            "Action": "ses:SendRawEmail",
            "Resource": "*"
        }
    ]
}

The email, which will be used to send out the messages, has to be verified!

Go to the Email Addresses tab on the AWS SES landing page:

AWS SES Landing Page

and click on Verify a New Email Address:

AWS SES Email Addresses

After typing in your email address, you will receive a confirmation email and you're good to go.

License

MIT