diff --git a/docs/docs/reference/core-plugins/email-plugin/index.md b/docs/docs/reference/core-plugins/email-plugin/index.md index 17b4b13464..d2bf3f6f51 100644 --- a/docs/docs/reference/core-plugins/email-plugin/index.md +++ b/docs/docs/reference/core-plugins/email-plugin/index.md @@ -117,7 +117,7 @@ etc. These defaults can be extended by adding custom templates for languages oth which respond to any of the available [VendureEvents](/reference/typescript-api/events/). A good way to learn how to create your own email handler is to take a look at the -[source code of the default handler](https://github.com/vendure-ecommerce/vendure/blob/master/packages/email-plugin/src/default-email-handlers.ts). +[source code of the default handler](https://github.com/vendure-ecommerce/vendure/blob/master/packages/email-plugin/src/handler/default-email-handlers.ts). New handler are defined in exactly the same way. It is also possible to modify the default handler: diff --git a/packages/email-plugin/src/plugin.ts b/packages/email-plugin/src/plugin.ts index 1573b884fa..c78947332b 100644 --- a/packages/email-plugin/src/plugin.ts +++ b/packages/email-plugin/src/plugin.ts @@ -138,7 +138,7 @@ import { * which respond to any of the available [VendureEvents](/reference/typescript-api/events/). * * A good way to learn how to create your own email handler is to take a look at the - * [source code of the default handler](https://github.com/vendure-ecommerce/vendure/blob/master/packages/email-plugin/src/default-email-handlers.ts). + * [source code of the default handler](https://github.com/vendure-ecommerce/vendure/blob/master/packages/email-plugin/src/handler/default-email-handlers.ts). * New handler are defined in exactly the same way. * * It is also possible to modify the default handler: