Emails
Setup automated emails with Plunk
This guide covers working with email sending using Plunk in Titan.
Titan includes a complete email infrastructure that allows you to send transactional and marketing emails to your users. The system uses Plunk, a modern email service that provides beautiful email templates, reliable delivery, and detailed analytics.
Testing emails locally
You can test email functionality in your local development environment.
-
Set
config.email.enabled
totrue
inconfig.ts
-
Add your Plunk API key to your app’s environment variables
-
Create email templates
a. In the Plunk dashboard, go to ‘Templates’
b. Create templates for each type of email you need (welcome, password reset, notifications, etc.)
c. Note the template IDs for each template you create
-
Run your app
-
Test sending emails
You can test sending emails using the provided utility functions:
Common issues & troubleshooting
Emails not being sent
- Verify your Plunk API key is correct and active
- Check if
config.email.enabled
is set totrue
in your config - Look for error messages in your server logs
Emails going to spam
- Ensure you’ve set up domain authentication in Plunk
- Check your email content for spam triggers (excessive exclamation marks, all caps, spam-like phrases)
- Gradually increase your sending volume rather than sending a large batch at once
Template variables not working
- Double-check that the variable names in your code match exactly with those in your Plunk templates
- Verify the format of the variables object you’re passing to the sendEmail function
For transactional emails, always provide a clear way for users to manage their email preferences or unsubscribe.