Create
Create Certified

Provision a Resend sending domain

yaml
type: io.kestra.plugin.resend.domain.Create
yaml
id: create_domain
namespace: company.team

tasks:
  - id: add_domain
    type: io.kestra.plugin.resend.domain.Create
    apiKey: "{{ secret('RESEND_API_KEY') }}"
    name: "example.com"
    region: "us-east-1"

yaml
id: create_domain_custom_return_path
namespace: company.team

tasks:
  - id: add_domain
    type: io.kestra.plugin.resend.domain.Create
    apiKey: "{{ secret('RESEND_API_KEY') }}"
    name: "example.org"
    region: "eu-west-1"
    customReturnPath: "mail"
Properties