All templates
engagement
Feedback Request Template
Ask customers for feedback or reviews
Preview
HTML Code
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Feedback Request</title>
</head>
<body style="font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif; line-height: 1.6; color: #333; max-width: 600px; margin: 0 auto; padding: 20px;">
<div style="background: #ffffff; padding: 40px 30px; border: 1px solid #e5e7eb; border-radius: 12px;">
<h1 style="color: #1f2937; font-size: 24px; margin-top: 0;">How are we doing?</h1>
<p>Hi {{name}},</p>
<p>We'd love to hear about your experience with {{company_name}}. Your feedback helps us improve!</p>
<p style="text-align: center; font-size: 18px; margin: 30px 0;">How would you rate us?</p>
<div style="text-align: center; margin: 30px 0;">
<a href="{{feedback_url}}?rating=1" style="display: inline-block; font-size: 32px; text-decoration: none; margin: 0 8px;">😞</a>
<a href="{{feedback_url}}?rating=2" style="display: inline-block; font-size: 32px; text-decoration: none; margin: 0 8px;">😐</a>
<a href="{{feedback_url}}?rating=3" style="display: inline-block; font-size: 32px; text-decoration: none; margin: 0 8px;">🙂</a>
<a href="{{feedback_url}}?rating=4" style="display: inline-block; font-size: 32px; text-decoration: none; margin: 0 8px;">😊</a>
<a href="{{feedback_url}}?rating=5" style="display: inline-block; font-size: 32px; text-decoration: none; margin: 0 8px;">🤩</a>
</div>
<p style="color: #6b7280; font-size: 14px; text-align: center;">Click an emoji to leave your feedback.</p>
</div>
</body>
</html>Template Variables
Replace these placeholders with your actual data:
{{name}}{{feedback_url}}{{company_name}}Send with SendPigeon
import { SendPigeon } from "sendpigeon";
const client = new SendPigeon(process.env.SENDPIGEON_API_KEY);
await client.emails.send({
from: "hello@yourdomain.com",
to: "user@example.com",
subject: "How was your experience?",
html: `<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device...`,
});Ready to send emails?
Get started with 1,000 free emails per month.
Start for free