Using MailGun Component in ColdFusion: Implementation Help Needed

I need guidance on integrating a MailGun module in ColdFusion; my current code returns a ‘sender missing’ error. Try this:

<cfscript>
  secretKey = 'key-987654321';
  mailService = new MailDispatcher(api=secretKey);
  mailService.sendEmail(domain='example.org', sender='[email protected]', recipient='[email protected]', subject='Demo', body='Hello', bodyHtml='<b>Hello</b>');
</cfscript>

hey, looks like your sender email might not be properly verified on mailgun. try checking your domain settings and certifying that the sender email matches the settings there. maybe a minor typo somewhere too