This is a clean and responsive HTML email template you can use for form submissions, lead confirmations, or onboarding emails.
HTML Email Template
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Thank You - Brand Name</title>
</head>
<body style="margin:0; padding:0; background-color:#f4f4f4; font-family: Arial, sans-serif;">
<table width="100%" cellpadding="0" cellspacing="0" border="0" style="background-color:#f4f4f4; padding:20px;">
<tr>
<td align="center">
<table width="600" cellpadding="50" cellspacing="0" border="0" style="background:#ffffff; border-radius:8px;">
<!-- Logo -->
<tr>
<td align="center" style="padding-bottom:20px;">
<img src="https://www.example.com/assets/logo.png"
width="80"
style="display:block;">
</td>
</tr>
<!-- Content -->
<tr>
<td style="color:#333333; font-size:16px; line-height:1.6;">
<p>Hi [field id="name"],</p>
<p>Thanks for reaching out to Brand Name.</p>
<p>
We’ve received your details and will review your goals, website, and current positioning.
One of our team members will get back to you shortly to discuss the next steps and how we
can help you prepare for the upcoming rollout.
</p>
<p>
In the meantime, if there’s anything you’d like to add, feel free to reply to this email.
</p>
<p>Looking forward to speaking with you.</p>
<p style="margin-top:30px;">
—<br>
<strong>Brand Name</strong><br>
Tagline<br><br>
📞 +91 9874563210<br>
📧 support@brandname.com<br>
📍 Address, Country
</p>
</td>
</tr>
</table>
</td>
</tr>
</table>
</body>
</html>Key Notes
- Uses table-based layout for maximum email client compatibility
- Fully responsive and safe for most email providers
- Dynamic field support (e.g.,
[field id="name"]) - Clean structure for easy customization
Customization Tips
- Replace logo URL with your brand asset
- Update contact details and branding
- Adjust colors to match your brand identity
- Add CTA buttons if needed (e.g., “Book a Call”)
Conclusion
This template is ideal for sending confirmation emails after form submissions. It’s lightweight, professional, and easy to reuse across projects.