TPL Mail Preview (PHP) — tplmail.devttt.com
Dán code PHP → Preview HTML mail + test gửi + 2 attachments
1) Code PHP (dán vào đây)
Phải set biến:
$html
(khuyến nghị thêm
$subject
,
$to
)
<?php // Ví dụ: bạn dán code tạo HTML mail ở đây $subject = "Test Mail UI"; $to = "test@example.com"; // HTML output $html = <<<HTML <div style="font-family:Arial,sans-serif"> <h2 style="margin:0 0 8px">Xin chào 👋</h2> <p style="margin:0 0 12px">Đây là email test giao diện.</p> <div style="padding:12px;border:1px solid #ddd;border-radius:10px"> <b>Nội dung:</b> OK </div> </div> HTML; // Text fallback $text = "Xin chào - Đây là email test giao diện."; // (tuỳ chọn) headers/extra $fromName = "TPL Mail"; $fromEmail = "no-reply@tplmail.devttt.com";
To (nếu bạn muốn test gửi thật)
Subject override
Upload file 1 (attachment)
Upload file 2 (attachment)
Preview (render HTML)
Xem RAW HTML
Send (gửi thật bằng mail())
Save code
Gợi ý
Trong code: set
$html
là HTML email. Nếu muốn gửi: set
$to
,
$subject
,
$fromEmail
(tuỳ chọn).
2) Output (preview khi gửi)