sendGrid password reminder error

"env": "0.0.2",
"strapi": "3.5.3",
"strapi-admin": "3.5.3",
"strapi-connector-mongoose": "3.5.3",
"strapi-plugin-content-manager": "3.5.3",
"strapi-plugin-content-type-builder": "3.5.3",
"strapi-plugin-email": "3.5.3",
"strapi-plugin-upload": "3.5.3",
"strapi-plugin-users-permissions": "3.5.3",
             "strapi-provider-email-sendgrid": "^3.5.4",
"strapi-utils": "3.5.3"
"engines": {
  "node": ">=10.16.0 <=14.x.x",
  "npm": "^6.0.0"
},

Hello All,

  • sendGrid test email work: ok
  • local registrations login working: ok

issue:
trying to get a password reminder resolve with the wallowing error:

message: “Forbidden”, code: 403

message: “The from address does not match a verified Sender Identity. Mail cannot be sent until this error is resolved. Visit Sender Identity - Twilio to see the Sender Identity requirements”

my pluging.js

    module.exports = ({ env }) => ({
      // ...
  email: {
    provider: 'sendgrid',
    providerOptions: {
      apiKey: env('SENDGRID_API_KEY'),
    },
    settings: {
      defaultFrom: 'myeMail@gmail.com',
      defaultReplyTo: 'myeMail@gmail.com',
      testAddress: 'myeMail@gmail.com',
    },
  },

the request :

axios
    .post("https://events-pr-back.herokuapp.com/auth/forgot-password", {
      email: this.txtUUserEmail,
    })

Both public and authenticated email are open

3

so: sendGrid password reminder error still remains

1 Like

settings → Email templates → reset password → shipper Address

change shipper Address and response/reply address to the SendGrid email and hopefully i will work