
- Lead captured → welcome sequence
- Purchase completed → receipt sent
- Feedback submitted → thank you email
Who this guide is for
- v0 builders who need transactional email without the setup
- Vibe coders who want to ship notifications as fast as they ship features
- Anyone using v0 with a database looking for professional, on-brand emails
Why can’t I just ask v0 to build email?
You could. Prompt v0 to send a welcome email when someone signs up. It’ll wire up Resend or SendGrid. But then:- How do you preview that email with real user data before it goes out?
- How do you track who opened it? Who clicked?
- What happens when emails bounce?
- Are you setting up DKIM and SPF records for deliverability?
- What about retry logic when the provider has an outage?
- What about scheduled emails? Recurring digests? Drip sequences?
- After you’ve built a few workflows, how do you see how they’re all performing in one place?
- How do you let teammates edit email copy without touching code?
Prerequisites
- A v0 app with a database integration (Supabase, Neon, or another Postgres provider)
- 5 minutes
Does your v0 project have a database?
Dreamlit connects to your database to watch for changes and trigger emails. v0 supports several database integrations through the Vercel Marketplace.Supported databases
v0 offers built-in integrations for:- Supabase: Full Postgres database with auth, realtime, and more
- Neon: Serverless Postgres with instant provisioning
- Other Postgres providers: Any Postgres database you’ve connected manually
If you’re starting a new v0 project and plan to use Dreamlit, we recommend Supabase for the easiest setup. Just two clicks to connect.
How to check your database setup
- Open your v0 project
- Go to Project Settings → Integrations
- Look for Supabase, Neon, or another database integration
Adding a database to your v0 project
If your project doesn’t have a database yet:- In v0’s chat, prompt: “Add a Supabase database to this project” (or Neon)
- Click Add when v0 suggests the integration
- Follow the setup wizard to connect through the Vercel Marketplace
Connect Dreamlit to your database
- Supabase
- Neon
- Other Postgres
If your v0 app uses Supabase, connecting is two clicks:That’s it. 2 clicks and you’re connected.
Create a Dreamlit account
Go to app.dreamlit.ai and sign up.
Example: Welcome email workflow
Let’s walk through creating a welcome email that sends when someone signs up. You can use this pattern for any workflow where you record data in your database.Step 1: Create the workflow in Dreamlit
Click Create Workflow and describe what you want:“Send a welcome email when a new user signs up”The AI generates everything: the database trigger, email template, and copy.

Step 2: Update your v0 app (if needed)
Here’s the key insight: Dreamlit watches your database, not your code. When a new row appears in yourusers or auth.users table, Dreamlit sends the email automatically.
If you’re using Supabase Auth, users are automatically added to the
auth.users table when they sign up. No extra table needed.
“When a user signs up, add a row to the user_signups table with their email and name”
Or for something like order confirmations:
“When a user completes checkout, insert a row into the orders table with the order details”
Step 3: Preview and publish
Preview your email with real data from your database, then click Publish.Prompting v0 to work with Dreamlit
Dreamlit triggers emails based on database changes. When prompting v0, focus on getting data into your database. Dreamlit handles the rest. Good prompts for v0:| You want… | Prompt v0 with… |
|---|---|
| Welcome emails | ”Store new signups in a user_signups table” |
| Order confirmations | ”Insert order details into orders when checkout completes” |
| Comment notifications | ”Save comments to a comments table with the post_id and author” |
| Activity alerts | ”Log user actions to an activity table” |
More workflow ideas
Looking for inspiration? Check out our use cases for example prompts across welcome emails, order confirmations, reminders, internal alerts, and more.Send from your own domain
By default, emails send from Dreamlit’s domain. To send from your own domain (like[email protected]), you can set up a custom email domain in minutes.
Add your domain
Go to Settings → Email Domains and click Add domain. Enter your domain (we recommend a subdomain like
mail.yourapp.com).Verify automatically
Dreamlit can automatically configure your DNS records for you. Just click Verify with your DNS provider, sign in to your provider, and authorize the changes.

FAQ
What if my v0 project doesn't have a database?
What if my v0 project doesn't have a database?
You can add one directly from v0. In the chat, prompt: “Add a Supabase database to this project” (or Neon). v0 will walk you through the Vercel Marketplace setup.
Which database should I choose: Supabase or Neon?
Which database should I choose: Supabase or Neon?
We recommend Supabase. It connects to Dreamlit in two clicks via OAuth, and includes auth, realtime, and other features you’ll likely need. Neon works too if you already have it set up.
Why aren't my emails sending?
Why aren't my emails sending?
A few things to check:
- Is your workflow published? Saved workflows don’t run until you click Publish.
- Is the trigger table correct? v0 might have named tables differently than you prompted. Check your database to see the actual table names.
- Is data being written? Check your database dashboard to confirm rows are being created.
- Try the preview. Use the preview to test with sample data and verify the workflow runs.
Do I need to change my v0 app code?
Do I need to change my v0 app code?
Usually no. Dreamlit watches your database for changes, so if your app already writes the data you need, you’re all set. If you need to track something new (like order completions), just prompt v0 to add the database write.
Will my emails work on Vercel's edge functions?
Will my emails work on Vercel's edge functions?
Yes. Dreamlit doesn’t run inside your app. It connects directly to your database. Deploy to Vercel’s edge, serverless, or any other runtime. Your email workflows keep running.
Can I send Slack notifications too?
Can I send Slack notifications too?
Yes. Dreamlit supports Slack alongside email. Just describe what you want: “Notify our team on Slack when a new order comes in.” Learn more about Slack →
How do I test without emailing real users?
How do I test without emailing real users?
Use the preview feature to send test emails to yourself with real data from your database. Your workflow won’t email actual users until you publish it.
What if I'm already using Resend, SendGrid, or another email provider?
What if I'm already using Resend, SendGrid, or another email provider?
Dreamlit works alongside traditional email providers. Since we take a fundamentally different approach (database-driven, AI-generated workflows), you don’t need to migrate off your existing setup. Try Dreamlit for your next workflow and keep using your current provider for everything else.
