This package is forked off (EXTERNAL FORK) from: mondago/strapi-provider-email-msgraph
npm install strapi-email-msgraphThis package is externally forked off: mondago - I do not take any credits
json
"dependencies": {
...
"strapi-provider-email-msgraph": "npm:strapi-email-msgraph"
...
}
`
Then run either yarn or npm install (depending on which package manager you're using).
Configuration
To use this provider setup your config/plugins.ts file:
`typescript
export default ({ env }) => ({
email: {
config: {
provider: "strapi-provider-email-msgraph",
providerOptions: {
clientId: env("GRAPH_MAIL_CLIENT_ID"),
clientSecret: env("GRAPH_MAIL_CLIENT_SECRET"),
tenantId: env("GRAPH_MAIL_TENANT_ID"),
},
settings: {
defaultFrom: "hello@example.com",
},
}
},
});
``