Your SMTP
Dynamic Content
Create highly personalized email campaigns that adapt to each recipient. Perfect for welcome emails, order confirmations, abandoned cart reminders, and marketing campaigns.
<!-- Welcome Email Template -->
<!DOCTYPE html>
<html>
<head>
<style>
.header { background: #4A6CF7; color: white; padding: 40px; }
.content { padding: 40px; font-family: Arial, sans-serif; }
.button { background: #4A6CF7; color: white; padding: 15px 30px;
text-decoration: none; border-radius: 5px; }
</style>
</head>
<body>
<div class="header">
<h1>Welcome to {{ company.name }}, {{ user.first_name }}!</h1>
</div>
<div class="content">
<p>Hi {{ user.first_name }},</p>
<p>Thanks for joining {{ company.name }}! We're excited to have you on board.</p>
{% if user.trial_days > 0 %}
<p>Your {{ user.trial_days }}-day free trial has started. Here's what you get:</p>
<ul>
{% for feature in trial_features %}
<li>{{ feature.name }} - {{ feature.description }}</li>
{% endfor %}
</ul>
{% endif %}
{% if user.referral_code %}
<div style="background: #f0f4ff; padding: 20px; margin: 20px 0;">
<h3>Share & Earn!</h3>
<p>Your referral code: <strong>{{ user.referral_code }}</strong></p>
<p>Get {{ referral.reward }} for each friend who signs up!</p>
</div>
{% endif %}
<p style="text-align: center; margin: 40px 0;">
<a href="{{ activation_url }}" class="button">Activate Your Account</a>
</p>
<p>Need help? Reply to this email or check our
<a href="{{ help_url }}">help center</a>.</p>
<p>Best regards,<br>
The {{ company.name }} Team</p>
</div>
</body>
</html>
"Dynamic email personalization with our liquid template system ensures your messages reach the right person with the right content at the right time."
Integrate our API with just a few lines of code
curl --request POST \
--url https://dash.liquidtemplater.com/items/template_request \
--header 'Authorization: Bearer YOUR_API_TOKEN' \
--header 'Content-Type: application/json' \
--data '{
"data": {
"customer": {
"name": "John Doe",
"email": "john@example.com",
"order_id": "12345"
}
},
"template": "<h1>Hello {{ customer.name }}</h1><p>Your order #{{ customer.order_id }} is ready!</p>",
"type": "pdf"
}'
Just pass your API token in the Authorization header
Use Liquid templating with your JSON data
Generate PDFs, emails, or DOCX files instantly
All email data is processed in real-time and stored securely in our German data centers for 7 days. This gives you a complete audit trail while ensuring GDPR compliance through automatic data deletion.