outreach/templates/outreach.html
2025-08-15 01:03:38 -08:00

108 lines
2.8 KiB
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>{{subject}}</title>
<style>
body {
font-family: Arial, sans-serif;
line-height: 1.6;
color: #333;
max-width: 600px;
margin: 0 auto;
padding: 20px;
}
.header {
background-color: #f4f4f4;
padding: 20px;
text-align: center;
border-radius: 5px;
}
.content {
padding: 20px 0;
}
.footer {
text-align: center;
padding: 20px;
font-size: 12px;
color: #666;
}
.button {
display: inline-block;
padding: 10px 20px;
background-color: #007bff;
color: white;
text-decoration: none;
border-radius: 5px;
margin: 10px 0;
}
.firm-info {
background-color: #f9f9f9;
padding: 10px;
border-left: 3px solid #007bff;
margin: 10px 0;
}
</style>
</head>
<body>
<div class="header">
<h1>Legal Partnership Opportunity</h1>
</div>
<div class="content">
<p>Dear {{greeting}},</p>
<p>
I hope this email finds you well. I'm reaching out to
<strong>{{firmName}}</strong> {{#if location}}in {{location}}{{/if}}
regarding an exciting business opportunity.
</p>
{{#if website}}
<div class="firm-info">
<p>
We've reviewed your firm's profile and are impressed by your practice
areas and expertise showcased on your website at
<a href="{{website}}">{{website}}</a>.
</p>
</div>
{{/if}}
<p>
We have a unique proposition that could benefit your firm significantly:
</p>
<ul>
<li>Expand your client base with qualified leads</li>
<li>Access to cutting-edge legal technology solutions</li>
<li>Strategic partnership opportunities</li>
<li>Revenue growth potential of 20-30%</li>
</ul>
<p>
I would love to schedule a brief 15-minute call to discuss how we can
help {{firmName}} achieve its growth objectives.
</p>
<p style="text-align: center">
<a href="mailto:{{fromEmail}}?subject=Re: {{subject}}" class="button">
Schedule a Call
</a>
</p>
<p>
Best regards,<br />
{{senderName}}<br />
{{senderTitle}}<br />
{{senderCompany}}
</p>
</div>
<div class="footer">
<p>This email was sent to {{email}} for {{firmName}}</p>
<p>To unsubscribe, reply with "UNSUBSCRIBE" in the subject line</p>
</div>
</body>
</html>