Trigger Mailrify’s email API using wget.
wget --method=POST \ --header='Authorization: Bearer YOUR_API_KEY' \ --header='Content-Type: application/json' \ --body-data='{ "from": "[email protected]", "to": "[email protected]", "subject": "Welcome to Mailrify", "html": "<p>It works! 👋</p>" }' \ 'https://app.mailrify.com/api/v1/emails'