Email Signature Generator

Generateur de Signature Email

Create HTML email signatures.

Your Details

Template

Unlock Pro Features

Get premium templates, custom fonts, logo upload, banners, and analytics tracking.

Upgrade to Pro — €9

Pro Features PRO

Click to upload logo (PNG, JPG, SVG)

Live Preview

Upgrade to Pro — €9

Unlock 10+ premium templates, custom fonts, logo upload, banners, and analytics tracking for your email signatures.

Get Pro Access →
'); doc.close(); // Auto-resize iframe setTimeout(function() { try { var h = doc.body.scrollHeight; iframe.style.height = Math.max(200, h + 32) + 'px'; } catch(e) {} }, 50); } function copyHTML() { var html = buildSignatureHTML(); if (navigator.clipboard && navigator.clipboard.writeText) { navigator.clipboard.writeText(html).then(function() { showToast('HTML copied to clipboard!'); }).catch(function() { fallbackCopy(html); }); } else { fallbackCopy(html); } } function fallbackCopy(text) { var ta = document.createElement('textarea'); ta.value = text; ta.style.position = 'fixed'; ta.style.opacity = '0'; document.body.appendChild(ta); ta.select(); try { document.execCommand('copy'); showToast('HTML copied to clipboard!'); } catch(e) { showToast('Failed to copy. Please select and copy manually.'); } document.body.removeChild(ta); } function showToast(msg) { var t = document.getElementById('toast'); t.textContent = msg; t.classList.add('show'); setTimeout(function(){ t.classList.remove('show'); }, 2200); }