actions: - name: Query resend provider: resend config: "{{ provider.my_provider_name }}" with: _from: {value} # From email address to: {value} # To email address subject: {value} # Email subject html: {value} # Email body
# Send an email notification using the Resend provider. alert: id: email-notification description: Send an email notification using Resend actions: - name: send-email provider: type: resend config: "{{ providers.resend-provider }}" with: _from: "[email protected]" to: "[email protected]" subject: "Hello from Resend Provider" html: "<p>This is the email body.</p>"