Email service

We need mail service to verify user email

You can skip this step if you did not need a verification email in your app

How to disabled email verify? 1 - open config\default.json 2- Set false at verifyEmail.enabled

Send emails using mailgun

  1. Create mailgun account

  2. Update config file

    /config/default.json
    // Add this lines
      "mailgun": {
        "apiKey": "key-XXX",
        "domain": "XX.com"
      }
      
    "feathers-mongoose-casl": {
        "mailer": {
          "service": "mailgun",
        },

Send emails using sendgrid

  1. Create sengrid account

  2. Update config file

Last updated

Was this helpful?