-
A collection of high-quality, unstyled components for creating beautiful emails.Pricing:
- Open Source
There is a library, called react-email, that is designed to make email creation easier and more efficient by using the component-based architecture of React. It allows developers to build and style emails using familiar React components, providing better development experience, reusability and maintainability.
#Utilities #Communications #Open Source Email Templates 27 social mentions
-
2E
Example.com
This product hasn't been added to SaaSHub yetExport const WelcomeEmail = () => { return ( <Html lang="en"> <Body style={body}> <h1>Welcome to the Emailh1> <Button href="https://example.com" style={button}> Confirm your email here Button> Body> Html> ); }; Const body = { fontFamily: '-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Ubuntu,sans-serif' }; Const button = { backgroundColor: "#0095ff", border: "1px solid #0077cc", fontSize: "17px", lineHeight: "17px", padding: "13px 17px", borderRadius: "4px", color: "#fff", width: "200px", }; Export default WelcomeEmail;.