Email & Notifications
Email delivery issues, template variables, DNS setup, and notification troubleshooting.
Written By Victor Raessen
Last updated 4 days ago
Email & Notifications
Troubleshooting email delivery, template rendering, and notification issues.
Emails not sending
Template variables not rendering
If you see raw {{ variable }} text in sent emails instead of actual values:
- Check the variable name matches exactly — variable names are case-sensitive
- Use the correct variable scope:
{{ recipient.firstName }}for the recipient,{{ user.firstName }}for the sender,{{ quote.number }}for quote data - Some variables are only available in specific template types (e.g., quote variables only work in quote-related templates)
Available variable categories:
- Global:
{{ siteTitle }} - Recipient:
{{ recipient.firstName }},{{ recipient.lastName }},{{ recipient.email }},{{ recipient.company }}, etc. - User (sender):
{{ user.firstName }},{{ user.lastName }},{{ user.email }}, etc. - Quote:
{{ quote.number }},{{ quote.name }},{{ quote.link }},{{ quote.expiresAt }}, etc. - Custom fields:
{{ quote.customFields.<id> }},{{ quote.opportunity.udf.<id> }}
Notification issues
- Quote viewed notification not received — Check that the "Quote Viewed" notification template is enabled in Admin > Email
- Approval notifications not sent — Verify the approver has a valid email address and the approval template is enabled
- Order confirmation not sent — Check that the order confirmation template is enabled and the recipient has an email
See Email for full email configuration documentation.
See also
- Troubleshooting Overview — general troubleshooting steps
- Quotes & Approvals — quote sending and approval issues