https://github.com/killmenot/nodemailer-postmark-transport
Postmark transport for Nodemailer
https://github.com/killmenot/nodemailer-postmark-transport
nodemailer postmark postmark-templates postmark-transport transport
Last synced: 7 months ago
JSON representation
Postmark transport for Nodemailer
- Host: GitHub
- URL: https://github.com/killmenot/nodemailer-postmark-transport
- Owner: killmenot
- License: mit
- Created: 2016-05-01T18:19:16.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2025-02-17T22:35:41.000Z (8 months ago)
- Last Synced: 2025-03-29T09:08:30.905Z (7 months ago)
- Topics: nodemailer, postmark, postmark-templates, postmark-transport, transport
- Language: JavaScript
- Size: 422 KB
- Stars: 33
- Watchers: 2
- Forks: 13
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
README
# nodemailer-postmark-transport
A Postmark transport for Nodemailer.
[](https://github.com/killmenot/nodemailer-postmark-transport/actions?query=branch%3Amaster) [](https://coveralls.io/github/killmenot/nodemailer-postmark-transport?branch=master) [](https://libraries.io/npm/nodemailer-postmark-transport) [](https://www.npmjs.com/package/nodemailer-postmark-transport) [](https://snyk.io/test/npm/nodemailer-postmark-transport) [](https://www.codacy.com/gh/killmenot/nodemailer-postmark-transport/dashboard/nodemailer-postmark-transport)
## Requirements
| version | Node.js | peerDependencies |
|----------|:--------:|:------------------:|
| 6.x | 18+ | nodemailer >=6.x |
| 5.x | 12+ | nodemailer >=4.x |
| 4.x | 10+ | nodemailer >=4.x |
| 3.x | 8+ | nodemailer >=4.x |
| 2.x | 6+ | nodemailer >=4.x |
| >=1.3 <2 | 4+ | |
| <1.3 | 0.10+ | |## Migrating from version 1.x
Please see [CHANGELOG](/CHANGELOG.md#200-2018-12-05) for more details.
## Install
```
npm install nodemailer-postmark-transport
```## Examples
### Quickstart
```javascript
'use strict';const nodemailer = require('nodemailer');
const postmarkTransport = require('nodemailer-postmark-transport');
const transport = nodemailer.createTransport(postmarkTransport({
auth: {
apiKey: 'key'
}
}));
const mail = {
from: 'john.doe@example.org',
to: 'jane.doe@example.org',
subject: 'Hello',
text: 'Hello',
html: 'Hello
'
};// callback style
transport.sendMail(mail, function (err, info) {
if (err) {
console.error(err);
} else {
console.log(info);
}
});// async/await style
try {
const info = await transport.sendMail(mail);
console.log(info);
} catch (err) {
console.error(err);
}```
### Using Postmark templates feature
Read about Postmark templates here: [Special delivery: Postmark templates](https://postmarkapp.com/blog/special-delivery-postmark-templates). Read more about template alias here: [How do I use a template alias?](https://postmarkapp.com/support/article/1117-how-do-i-use-a-template-alias)
```javascript
'use strict';const nodemailer = require('nodemailer');
const postmarkTransport = require('nodemailer-postmark-transport');
const transport = nodemailer.createTransport(postmarkTransport({
auth: {
apiKey: 'key'
}
}));// using templateId
let mail = {
from: 'john.doe@example.org',
to: 'jane.doe@example.org',
templateId: 1234,
templateModel: {
foo: 'bar'
}
};// using templateAlias
let mail = {
from: 'john.doe@example.org',
to: 'jane.doe@example.org',
templateAlias: 'buzz',
templateModel: {
foo: 'bar'
}
};transport.sendMail(mail, function (err, info) {
if (err) {
console.error(err);
} else {
console.log(info);
}
});
```### Using attachments
References to nodemailer attachments [docs](https://community.nodemailer.com/using-attachments/) and [Postmark attachments docs](http://developer.postmarkapp.com/developer-send-api.html)
```javascript
'use strict';const nodemailer = require('nodemailer');
const postmarkTransport = require('nodemailer-postmark-transport');
const transport = nodemailer.createTransport(postmarkTransport({
auth: {
apiKey: 'key'
}
}));
const mail = {
from: 'john.doe@example.org',
to: 'jane.doe@example.org',
subject: 'Hello',
text: 'Hello, This email contains attachments',
html: 'Hello, This email contains attachments
',
attachments: [
{
path: 'data:text/plain;base64,aGVsbG8gd29ybGQ=',
cid: 'cid:molo.txt'
}
]
};transport.sendMail(mail, function (err, info) {
if (err) {
console.error(err);
} else {
console.log(info);
}
});
```### Access to Postmark.js client
You can find more details about [Postmark.js](https://github.com/wildbit/postmark.js) in documentation [here](https://wildbit.github.io/postmark.js)
```javascript
'use strict';const nodemailer = require('nodemailer');
const postmarkTransport = require('nodemailer-postmark-transport');
const transporter = postmarkTransport({
auth: {
apiKey: 'key'
}
});
const transport = nodemailer.createTransport(transporter);// transporter.client -> reference to Postmark.js client
// transport.mailer.transporter.client -> reference to Postmark.js client```
### Provide Postmark.js client with custom client options
[Postmark.js](https://github.com/wildbit/postmark.js) library allows to specify configuration options for its server client. You can get more details about possible values [here](https://github.com/wildbit/postmark.js/blob/master/src/client/models/client/ClientOptions.ts#L2) and default values [here](https://github.com/wildbit/postmark.js/blob/master/src/client/BaseClient.ts#L21)
```javascript
'use strict';const nodemailer = require('nodemailer');
const postmarkTransport = require('nodemailer-postmark-transport');
const transport = nodemailer.createTransport(postmarkTransport({
auth: {
apiKey: 'key'
},
postmarkOptions: {
timeout: 60
}
}));
```## Contributors
[List of project's contributors!](CONTRIBUTORS.md)
## License
```
The MIT License (MIT)Copyright (c) Alexey Kucherenko
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
```