Loading...
FastStaq sends transactional email (verification, password reset, magic links, ticket notifications) over SMTP. Email is queued and delivered by a background worker.
In server/.env:
SMTP_HOST=smtp.yourprovider.com
SMTP_PORT=587
SMTP_USER=your-smtp-username
SMTP_PASS=your-smtp-password
FROM_EMAIL=noreply@yourdomain.com
FROM_NAME=Your Product
587 uses STARTTLS and works with most providers. Port 465 is implicit TLS.FROM_EMAIL should be an address on a domain you control and have authenticated.FROM_NAME is the display name recipients see.Any standard SMTP provider works (for example Postmark, Resend SMTP, Amazon SES, Mailgun, or SendGrid). For best deliverability, pick one that lets you authenticate your domain.
Set these DNS records on your sending domain so inboxes trust your mail:
pnpm dev./login.If nothing arrives, check the worker logs for SMTP errors and verify your credentials and port.
Open a support ticket and include the SMTP error from your logs.
Sign in to leave feedback on this article.