Email clients have this concept of “preview text” which gives insight into
what’s inside the email before you open. A good practice is to keep that text
under 90 characters.
A preview text that will be displayed in the inbox of the recipient.
npm install @react-email/components -E
# or get the individual package
npm install @react-email/preview -E
import { Preview } from "@react-email/components";
const Email = () => {
return <Preview>Email preview text</Preview>;
};