Skip to content

Commit

Permalink
Merge pull request #18 from vokal/feat/sendgrid-integration
Browse files Browse the repository at this point in the history
Sendgrid integration
  • Loading branch information
garciajg authored Apr 26, 2024
2 parents 9fa97a7 + f1a499e commit 41417eb
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion medusa-config.js
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,15 @@ const plugins = [
secret_access_key: process.env.S3_SECRET_ACCESS_KEY,
cache_control: process.env.S3_CACHE_CONTROL,
},
}
},
{
resolve: `medusa-plugin-sendgrid`,
options: {
api_key: process.env.SENDGRID_API_KEY,
from: process.env.SENDGRID_FROM,
user_password_reset_template: process.env.SENDGRID_FORGOT_PASSWORD_ID,
},
},
];

const modules = {
Expand Down

0 comments on commit 41417eb

Please sign in to comment.