Skip to content

Commit

Permalink
from with name
Browse files Browse the repository at this point in the history
  • Loading branch information
lulu committed May 10, 2024
1 parent 1474d18 commit 0dc7ed4
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

## Still in beta proceed with caution

## 2.0.0 - Contains breaking changes. Please read the documentation carefully
## v2.0.0 - Contains breaking changes. Please read the documentation carefully

You can now send emails with other providers and schedule the task to send emails.
Remember to run migrations after adding the plugin to the `medusa-config.js` file
Expand Down Expand Up @@ -139,7 +139,7 @@ I strongly recommend using this plugin in combination with the [Medusa Plugin Se
/* enable sendgrid */
sendgridEnabled: boolean
/* email from which you will be sending */
from: string
from: { name?: string; email: string } | string
/* template id from sendgrid */
templateId: string
/* header line of the email optional */
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "medusa-plugin-abandoned-cart",
"version": "2.0.4",
"version": "2.0.5",
"description": "Medusa plugin for abandoned cart tracking and recovery",
"author": "Lucjan Grzesik (https://github.com/luluhoc)",
"license": "MIT",
Expand Down
2 changes: 1 addition & 1 deletion src/types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ export interface BasePluginOptions {
/* enable sendgrid */
sendgridEnabled: boolean
/* email from which you will be sending */
from: string
from: { name?: string; email: string } | string
/* template id from sendgrid */
templateId: string
/* header line of the email optional */
Expand Down

0 comments on commit 0dc7ed4

Please sign in to comment.