- Create assinatura-template.html with placeholders - Create assinatura-exemplo.html with sample data - Support: name, position, phone, address, email, instagram
143 lines
7 KiB
HTML
143 lines
7 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="pt-BR">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Assinatura de Email - Moobz</title>
|
|
<style>
|
|
/* Estilos apenas para visualização no navegador - não serão aplicados no email */
|
|
body {
|
|
font-family: Arial, sans-serif;
|
|
background-color: #f5f5f5;
|
|
padding: 40px;
|
|
display: flex;
|
|
justify-content: center;
|
|
}
|
|
.preview-container {
|
|
background: white;
|
|
padding: 30px;
|
|
border-radius: 8px;
|
|
box-shadow: 0 2px 10px rgba(0,0,0,0.1);
|
|
}
|
|
h2 {
|
|
color: #333;
|
|
margin-bottom: 20px;
|
|
font-size: 14px;
|
|
}
|
|
.divider {
|
|
border-top: 1px solid #ddd;
|
|
margin: 20px 0;
|
|
}
|
|
.instructions {
|
|
background: #f9f9f9;
|
|
padding: 15px;
|
|
border-radius: 5px;
|
|
margin-top: 20px;
|
|
font-size: 12px;
|
|
color: #666;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div class="preview-container">
|
|
<h2>Prévia da Assinatura de Email</h2>
|
|
|
|
<!-- ========== COPIE A PARTIR DAQUI ========== -->
|
|
<table cellpadding="0" cellspacing="0" border="0" style="font-family: Arial, Helvetica, sans-serif; font-size: 14px; color: #333333; line-height: 1.4;">
|
|
<tr>
|
|
<td style="vertical-align: top; padding-right: 20px; border-right: 3px solid #FF6B00;">
|
|
<!-- Logo Moobz -->
|
|
<img src="https://via.placeholder.com/120x60/FF6B00/FFFFFF?text=MOOBZ" alt="Moobz" style="width: 120px; height: auto; display: block;" />
|
|
</td>
|
|
<td style="vertical-align: top; padding-left: 20px;">
|
|
<!-- Nome e Cargo -->
|
|
<table cellpadding="0" cellspacing="0" border="0">
|
|
<tr>
|
|
<td style="font-size: 18px; font-weight: bold; color: #333333; padding-bottom: 2px;">
|
|
{{NOME_SOBRENOME}}
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td style="font-size: 13px; color: #FF6B00; font-weight: 600; padding-bottom: 12px;">
|
|
{{CARGO}}
|
|
</td>
|
|
</tr>
|
|
<!-- Informações de Contato -->
|
|
<tr>
|
|
<td style="padding-bottom: 4px;">
|
|
<table cellpadding="0" cellspacing="0" border="0">
|
|
<tr>
|
|
<td style="width: 20px; vertical-align: middle;">
|
|
<img src="https://cdn-icons-png.flaticon.com/16/724/724664.png" alt="Telefone" style="width: 14px; height: 14px;" />
|
|
</td>
|
|
<td style="font-size: 13px; color: #555555; vertical-align: middle;">
|
|
{{TELEFONE}}
|
|
</td>
|
|
</tr>
|
|
</table>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td style="padding-bottom: 4px;">
|
|
<table cellpadding="0" cellspacing="0" border="0">
|
|
<tr>
|
|
<td style="width: 20px; vertical-align: middle;">
|
|
<img src="https://cdn-icons-png.flaticon.com/16/684/684809.png" alt="Endereço" style="width: 14px; height: 14px;" />
|
|
</td>
|
|
<td style="font-size: 13px; color: #555555; vertical-align: middle;">
|
|
{{ENDERECO}}
|
|
</td>
|
|
</tr>
|
|
</table>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td style="padding-bottom: 4px;">
|
|
<table cellpadding="0" cellspacing="0" border="0">
|
|
<tr>
|
|
<td style="width: 20px; vertical-align: middle;">
|
|
<img src="https://cdn-icons-png.flaticon.com/16/732/732200.png" alt="Email" style="width: 14px; height: 14px;" />
|
|
</td>
|
|
<td style="font-size: 13px; vertical-align: middle;">
|
|
<a href="mailto:{{EMAIL}}" style="color: #FF6B00; text-decoration: none;">{{EMAIL}}</a>
|
|
</td>
|
|
</tr>
|
|
</table>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td style="padding-top: 8px;">
|
|
<table cellpadding="0" cellspacing="0" border="0">
|
|
<tr>
|
|
<td style="width: 20px; vertical-align: middle;">
|
|
<img src="https://cdn-icons-png.flaticon.com/16/2111/2111463.png" alt="Instagram" style="width: 14px; height: 14px;" />
|
|
</td>
|
|
<td style="font-size: 13px; vertical-align: middle;">
|
|
<a href="https://instagram.com/{{INSTAGRAM}}" style="color: #FF6B00; text-decoration: none;">@{{INSTAGRAM}}</a>
|
|
</td>
|
|
</tr>
|
|
</table>
|
|
</td>
|
|
</tr>
|
|
</table>
|
|
</td>
|
|
</tr>
|
|
</table>
|
|
<!-- ========== COPIE ATÉ AQUI ========== -->
|
|
|
|
<div class="divider"></div>
|
|
|
|
<div class="instructions">
|
|
<strong>Como usar:</strong><br><br>
|
|
1. Substitua os campos entre <code>{{CHAVES}}</code> pelos seus dados:<br>
|
|
• <code>{{NOME_SOBRENOME}}</code> → Seu nome completo<br>
|
|
• <code>{{CARGO}}</code> → Seu cargo<br>
|
|
• <code>{{TELEFONE}}</code> → Seu telefone<br>
|
|
• <code>{{ENDERECO}}</code> → Endereço da empresa<br>
|
|
• <code>{{EMAIL}}</code> → Seu email<br>
|
|
• <code>{{INSTAGRAM}}</code> → Usuário do Instagram (sem @)<br><br>
|
|
2. Copie o HTML e cole nas configurações de assinatura do seu email.
|
|
</div>
|
|
</div>
|
|
</body>
|
|
</html>
|