Clarification in documentation on adding MX records

This commit is contained in:
Pinga 2025-01-24 13:08:01 +02:00
parent 0231bc9e14
commit 7129fc7019

View file

@ -279,6 +279,12 @@ return [
'type' => 'TXT',
'parameters' => ['"v=spf1 include:example.com ~all"'],
],
// MX record
[
'name' => '@',
'type' => 'MX',
'parameters' => [10, 'mail.example.com.'], // Priority and mail server
],
];
```