Skip to content

Instantly share code, notes, and snippets.

@heitara
Created April 1, 2025 10:24
Show Gist options
  • Save heitara/1e7e459f89fcce6f0c27007e6dc2ccf8 to your computer and use it in GitHub Desktop.
Save heitara/1e7e459f89fcce6f0c27007e6dc2ccf8 to your computer and use it in GitHub Desktop.
Postmark usage with NodeJS
const api = "your-api";
import postmark from 'postmark';
// Send an email:
let client = new postmark.ServerClient(api);
let r = client.sendEmail({
"From": "[email protected]",
"To": "[email protected]",
"Subject": "Test",
"TextBody": "Hello from Postmark!"
});
console.log(r);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment