email-dns-tools/dmarc-creator/index.html
2026-01-14 13:55:59 +01:00

41 lines
1.1 KiB
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>DMARC Record Creator - Generate DMARC DNS Records</title>
<link rel="stylesheet" href="/assets/styles/main.css">
<script type="module" src="/assets/scripts/creator.js"></script>
</head>
<body>
<h1>DMARC Record Creator</h1>
<label for="record">DNS Record</label><br>
<input id="record" type="text" disabled>
<main>
<h2>Create a DMARC DNS Record</h2>
<p>Customize the options below to generate a DMARC record, which will be shown in the input field above.</p>
<form id="form"></form>
<hr>
<p>
This tool allows you to create DMARC DNS records, which can be used when you are hosting an email-server
and want to provide an extra layer of security, so other email providers will trust your emails.
</p>
<p>
Select the options you want and copy the text. The DNS record should be a TXT record in the _dmarc
subdomain (e.g. _dmarc.example.com) with the content being the text above.
</p>
<center>
<h3>More tools:</h3>
<a href="/dmarc-validator">DMARC Validator Tool</a>
</center>
</main>
</body>
</html>