50 lines
1.6 KiB
HTML
50 lines
1.6 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>DMARC Record Creator - Generate DMARC DNS Records</title>
|
|
<link rel="stylesheet" href="/assets/styles/main.css">
|
|
<script type="module" src="/assets/scripts/ui/creator.js"></script>
|
|
</head>
|
|
<body>
|
|
<h1>DMARC Record Creator</h1>
|
|
|
|
<label for="record">DNS Record</label><br>
|
|
<input id="record" type="text" readonly>
|
|
|
|
<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>
|
|
|
|
<p>
|
|
Using DMARC prevents your emails from ending up in the receiver's spam folder by telling email servers
|
|
how strictly to handle validation with <a href="/dkim-creator">DKIM</a> and
|
|
<a href="/spf-creator">SPF</a>. It is highly recommended to set up both of these before using DMARC.
|
|
</p>
|
|
|
|
<center>
|
|
<h3>More tools:</h3>
|
|
<a href="/dmarc-validator">DMARC Validator Tool</a> •
|
|
<a href="/DKIM-creator">DKIM Creator Tool</a> •
|
|
<a href="/spf-creator">SPF Creator Tool</a>
|
|
</center>
|
|
</main>
|
|
</body>
|
|
</html>
|