Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/components/font.md
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ export interface FontProps {
fallbackFontFamily: FallbackFont | FallbackFont[];
```

The fallback font family the system should you, if web fonts are not supported or the chosen font is not installed on the system.
The fallback font family the system should use, if web fonts are not supported or the chosen font is not installed on the system.

```ts
fontFamily: string;
Expand Down
2 changes: 1 addition & 1 deletion docs/core/render.md
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ Minify the HTML for rendered templates
plainText?: boolean | PlainTextOptions;
```

If `true` or an `object`, renders the target email(s) to plain text. If the need to modify how the target is rendered to plain text, an `object` representing [`html-to-text` options](https://github.com/html-to-text/node-html-to-text/blob/master/packages/html-to-text/README.md#options) should be used.
If `true` or an `object`, renders the target email(s) to plain text. If you need to modify how the target is rendered to plain text, an `object` representing [`html-to-text` options](https://github.com/html-to-text/node-html-to-text/blob/master/packages/html-to-text/README.md#options) should be used.

```ts
pretty?: boolean;
Expand Down
2 changes: 1 addition & 1 deletion docs/email-providers.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ description: 'Use JSX email with an Email Provider of your choice'

Using JSX email with email providers or integrations is as simple as rendering the template you've already built. Rendering transforms your template from JSX/TSX into HTML, and optionally plain text. That's accomplished with the [jsx-email `render`](/docs/core/render) method. _We're going to assume that you've made it through the [Quick Start Guide](/docs/quick-start) before arriving here, and have an email template to use._

While JSX email can be used with just about any emal provider that takes a string for content input, this page will demonstrate use with a few popular providers.
While JSX email can be used with just about any email provider that takes a string for content input, this page will demonstrate use with a few popular providers.

## AWS SES

Expand Down