### Sending Email with Postmark API using createObject in ColdFusion Source: https://github.com/activecampaign/postmark-coldfusion/blob/main/ReadMe.md This snippet illustrates an alternative method for sending emails using the Postmark API in ColdFusion, employing the `createObject` function. It instantiates the `postmarkapi` component and directly invokes its `sendMail` method, passing the required arguments as a comma-separated list. This approach offers a more programmatic way to interact with the component. ```ColdFusion postmark = createObject("component", "path.to.postmarkapi"); postmark.sendMail( "recipient@domain.com" ,"sender@domain.com" ,"Email Subject" ,"your-postmark-api-key" ,"