Skip to content

Commit

Permalink
create resend.com template (#573)
Browse files Browse the repository at this point in the history
# Description

Creation of the Domain Connect template for resend.com to enable email
signing and specify authorized senders.

## Type of change

Please mark options that are relevant.

- [x] New template
- [ ] Bug fix (non-breaking change which fixes an issue in the template)
- [ ] New feature (non-breaking change which adds functionality to the
template)
- [ ] Breaking change (fix or feature that would cause existing template
behavior to be not backward compatible)

# How Has This Been Tested?

Please mark the following checks done
- [x] Schema validated using JSON Schema
[template.schema](./template.schema)
- [ ] Template functionality checked using [Online
Editor](https://pdnsadmin.revproxy.short-lived.de/dc/free/templateedit)
- [ ] Template is checked using [template
linter](https://github.com/Domain-Connect/dc-template-linter)
- [x] Template file name follows the pattern
`<providerId>.<serviceId>.json`

# Example variable values

```
region: us-east-1
publicKey: RANDOM-VALUE
```
  • Loading branch information
pawel-kow authored Jan 17, 2025
2 parents a7741d3 + 65ae56e commit 0a2f241
Showing 1 changed file with 32 additions and 0 deletions.
32 changes: 32 additions & 0 deletions resend.com.mail.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
{
"providerId": "resend.com",
"providerName": "Resend",
"serviceId": "mail",
"serviceName": "Mail",
"version": 1,
"syncPubKeyDomain": "resend.com",
"syncRedirectDomain": "resend.com",
"description": "Enable email signing and specify authorized senders.",
"logoUrl": "https://resend.com/static/brand/resend-wordmark-black.svg",
"records": [
{
"type": "MX",
"host": "send",
"pointsTo": "feedback-smtp.%region%.amazonses.com",
"ttl": 3600,
"priority": 10
},
{
"type": "SPFM",
"host": "send",
"ttl": 3600,
"spfRules": "include:amazonses.com"
},
{
"type": "TXT",
"host": "send",
"ttl": 3600,
"data": "p=%domainKey%"
}
]
}

0 comments on commit 0a2f241

Please sign in to comment.