chore: update README with new contributors and remove outdated Python documentation

This commit is contained in:
KM Koushik
2025-09-11 21:09:06 +10:00
parent 59fac64356
commit 66208a4b7a
3 changed files with 13 additions and 145 deletions

View File

@@ -11,19 +11,19 @@ description: "A guide on how to use useSend with React Email"
<CodeGroup>
```sh npm
npm install usesend @react-email/render
npm install usesend-js @react-email/render
```
```sh yarn
yarn add usesend @react-email/render
yarn add usesend-js @react-email/render
```
```sh pnpm
pnpm add usesend @react-email/render
pnpm add usesend-js @react-email/render
```
```sh bun
bun add usesend @react-email/render
bun add usesend-js @react-email/render
```
</CodeGroup>
@@ -49,7 +49,7 @@ export function Email(props) {
## Send an email using useSend
```ts
import { UseSend } from "usesend";
import { UseSend } from "usesend-js";
import { render } from "@react-email/render";
import { Email } from "./email";