Skip to main content
The Chat SDK adapter renders Card elements into styled HTML emails using @react-email/components. This lets you send structured, branded messages without writing raw HTML.

Card structure

A card has a type, title, optional subtitle, and children array. Children can be text blocks, dividers, link buttons, or action groups.

Child element types

TypeFieldsDescription
textcontentPlain text paragraph
dividern/aHorizontal rule
link-buttonlabel, urlClickable button that opens a URL
actionschildrenContainer for link buttons

Sending a card

Pass the card object and a fallbackText string to thread.post(). The fallback is used by email clients that don’t render HTML.
Always include fallbackText. Some email clients strip HTML entirely, and the fallback text is what recipients will see in that case.

Try it yourself

Welcome Cards Example

Full working example that sends a styled card on first contact