Enable or disable outbound emails for all flows
Connection details for your mail server
SMTP login credentials
smtp.gmail.com, port 587, encryption TLS.
How recipients see the email sender
Save settings and verify your connection by sending a test email
The email_settings
table does not exist in your Supabase database yet. Run this SQL once in your
Supabase SQL Editor:
CREATE TABLE IF NOT EXISTS email_settings ( id TEXT PRIMARY KEY, account_id TEXT NOT NULL, smtp_host TEXT DEFAULT '', smtp_port INTEGER DEFAULT 587, smtp_user TEXT DEFAULT '', smtp_pass TEXT DEFAULT '', smtp_from_name TEXT DEFAULT '', smtp_from_email TEXT DEFAULT '', smtp_encryption TEXT DEFAULT 'TLS', smtp_enabled BOOLEAN DEFAULT false, created_at BIGINT, updated_at BIGINT ); CREATE UNIQUE INDEX IF NOT EXISTS email_settings_account_id_idx ON email_settings(account_id);
After running the SQL, click Dismiss — your settings will save using the built-in Genspark storage as a fallback until the table is ready.