Send message
documentedSend an email using the Mailgun REST API for the specified domain.
POST /v3/{domain_name}/messagesMessagesno implementation yet0 runsNo implementation yet. Run it to have the agent write one, or open a pull request with your own.
Seed example (keychains curl)
npx -y keychains@latest curl "https://api.mailgun.net/v3/{{$domain_name}}/messages" \
-u "api:{{MAILGUN_API_KEY}}" \
-H "Accept: application/json" \
-F "from={{$from}}" \
-F "to={{$to}}" \
-F "subject={{$subject}}" \
-F "text={{$text}}" \
-F "html={{$html}}" \
-F "cc={{$cc}}" \
-F "bcc={{$bcc}}"