Security News
Fluent Assertions Faces Backlash After Abandoning Open Source Licensing
Fluent Assertions is facing backlash after dropping the Apache license for a commercial model, leaving users blindsided and questioning contributor rights.
nodemailer-postmark-transport
Advanced tools
A Postmark transport for Nodemailer.
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+ |
Please see CHANGELOG for more details.
npm install nodemailer-postmark-transport
'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: '<h1>Hello</h1>'
};
// 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);
}
Read about Postmark templates here: Special delivery: Postmark templates. Read more about template alias here: How do I use a template alias?
'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);
}
});
References to nodemailer attachments docs and Postmark attachments docs
'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: '<h1>Hello, This email contains attachments</h1>',
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);
}
});
You can find more details about Postmark.js in documentation here
'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
Postmark.js library allows to specify configuration options for its server client. You can get more details about possible values here and default values here
'use strict';
const nodemailer = require('nodemailer');
const postmarkTransport = require('nodemailer-postmark-transport');
const transport = nodemailer.createTransport(postmarkTransport({
auth: {
apiKey: 'key'
},
postmarkOptions: {
timeout: 60
}
}));
List of project's contributors!
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.
6.0.0 (2023-12-19)
<a name="5.3.0"></a>
FAQs
Postmark transport for Nodemailer
The npm package nodemailer-postmark-transport receives a total of 6,409 weekly downloads. As such, nodemailer-postmark-transport popularity was classified as popular.
We found that nodemailer-postmark-transport demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Fluent Assertions is facing backlash after dropping the Apache license for a commercial model, leaving users blindsided and questioning contributor rights.
Research
Security News
Socket researchers uncover the risks of a malicious Python package targeting Discord developers.
Security News
The UK is proposing a bold ban on ransomware payments by public entities to disrupt cybercrime, protect critical services, and lead global cybersecurity efforts.