@aphexcms/resend-adapter 0.1.0 → 0.1.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +2 -2
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -5,7 +5,7 @@ Resend email adapter for Aphex CMS.
|
|
|
5
5
|
## Installation
|
|
6
6
|
|
|
7
7
|
```bash
|
|
8
|
-
pnpm add @
|
|
8
|
+
pnpm add @aphexcms/resend-adapter resend
|
|
9
9
|
```
|
|
10
10
|
|
|
11
11
|
## Usage
|
|
@@ -14,7 +14,7 @@ pnpm add @aphex/resend-adapter resend
|
|
|
14
14
|
|
|
15
15
|
```typescript
|
|
16
16
|
// src/lib/server/email/index.ts
|
|
17
|
-
import { createResendAdapter } from '@
|
|
17
|
+
import { createResendAdapter } from '@aphexcms/resend-adapter';
|
|
18
18
|
import { RESEND_API_KEY } from '$env/static/private';
|
|
19
19
|
|
|
20
20
|
export const emailAdapter = createResendAdapter({
|