Postmark SMTP node for n8n
npm install n8n-nodes-postmark-smtpn8n-nodes-postmark-smtp.
bash
docker exec -it n8n npm install n8n-nodes-postmark-smtp
`
Usage
$3
1. Connect your Postmark API credential (fill in Server Token and optionally Account Token).
2. Select a valid From Domain (dynamically loaded).
3. (Optional) Enter From Name.
4. Enter From Email. Note: This must belong to the selected 'From Domain' or the node will error.
5. (Optional) Enter To Name.
6. Enter To Email.
7. Fill in Subject and HTML Body.
8. (Optional) Additional Fields:
- Cc
- Bcc
- Attachments: Add files from previous nodes.
Development
To develop and test this node locally:
1. Install dependencies:
`bash
npm install
`
2. Build the node:
`bash
npm run build
`
3. Start n8n with this node:
`bash
npm run dev
``