Call Mailrifyβs email API from the command line with cURL.
curl -X POST 'https://app.mailrify.com/api/v1/emails' \ -H 'Authorization: Bearer YOUR_API_KEY' \ -H 'Content-Type: application/json' \ -d '{ "from": "[email protected]", "to": "[email protected]", "subject": "Welcome to Mailrify", "html": "<p>It works! π</p>" }'