Send message from Mailchimp template
documentedSend a transactional email using a Mailchimp Transactional template.
POST /messages/send-mc-templateMessagesno 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://mandrillapp.com/api/1.0/messages/send-mc-template.json" \
-X POST \
-H "Content-Type: application/json" \
-H "Accept: application/json" \
-d '{"key":"{{MAILCHIMP_API_KEY}}","template_name":"{{$template_name}}","template_content":[{"name":"header","content":"{{$header}}"},{"name":"body","content":"{{$body}}"}],"message":{"subject":"{{$subject}}","from_email":"{{$from_email}}","from_name":"{{$from_name}}","to":[{"email":"{{$to_email}}","type":"to"}],"headers":{"Reply-To":"{{$reply_to}}"} },"async":false}'