
Security News
GitHub Actions Pricing Whiplash: Self-Hosted Actions Billing Change Postponed
GitHub postponed a new billing model for self-hosted Actions after developer pushback, but moved forward with hosted runner price cuts on January 1.
@log4js-node/smtp
Advanced tools
Sends log events as emails. If you use this appender, you should also call log4js.shutdown when your application closes so that any remaining emails can be sent. Many of the configuration options below are passed through to nodemailer, so you should read their docs to get the most out of this appender.
npm install log4js
npm install @log4js-node/smtp
type - @log4js-node/smtpSMTP - object (optional, if not present will use transport field)
host - string (optional, defaults to localhost)port - integer (optional, defaults to 25)auth - object (optional) - authentication details
user - stringpass - stringtransport - object (optional, if not present will use SMTP) - see nodemailer docs for transport options
plugin - string (optional, defaults to smtp) - the nodemailer transport plugin to useoptions - object - configuration for the transport pluginattachment - object (optional) - send logs as email attachment
enable - boolean (optional, defaults to false)message - string (optional, defaults to See logs as attachment) - message to put in body of emailfilename - string (optional, defaults to default.log) - attachment filenamesendInterval - integer (optional, defaults to 0) - batch emails and send in one email every sendInterval seconds, if 0 then every log message will send an email.shutdownTimeout - integer (optional, defaults to 5) - time in seconds to wait for emails to be sent during shutdownrecipients - string - email addresses to send the logs tosubject - string (optional, defaults to message from first log event in batch) - subject for emailsender - string (optional) - who the logs should be sent ashtml - boolean (optional, defaults to false) - send the email as HTML instead of plain textlayout - object (optional, defaults to basicLayout) - see layoutscc - string (optional) - email addresses to send the carbon-copy logs tobcc - string (optional) - email addresses to send the blind-carbon-copy logs tolog4js.configure({
appenders: {
'email': {
type: '@log4js-node/smtp', recipients: 'dev.team@company.name'
}
},
categories: { default: { appenders: [ 'email' ], level: 'error' } }
});
This configuration will send an email using the smtp server running on localhost:25, for every log event of level ERROR and above. The email will be sent to dev.team@company.name, the subject will be the message part of the log event, the body of the email will be log event formatted by the basic layout function.
log4js.configure({
appenders: {
'email': {
type: '@log4js-node/smtp',
recipients: 'dev.team@company.name',
subject: 'Latest logs',
sender: 'my.application@company.name',
attachment: {
enable: true,
filename: 'latest.log',
message: 'See the attachment for the latest logs'
},
sendInterval: 3600
}
},
categories: { default: { appenders: ['email'], level: 'ERROR' } }
});
This configuration will send an email once every hour, with all the log events of level 'ERROR' and above as an attached file.
log4js.configure({
appenders: {
email: {
type: '@log4js-node/smtp', SMTP: { host: 'smtp.company.name', port: 8025 }, recipients: 'dev.team@company.name'
}
},
categories: { default: { appenders: ['email'], level: 'info' } }
});
This configuration can also be written as:
log4js.configure({
appenders: {
email: {
type: '@log4js-node/smtp',
transport: {
plugin: 'smtp',
options: {
host: 'smtp.company.name',
port: 8025
}
},
recipients: 'dev.team@company.name'
}
},
categories: {
default: { appenders: ['email'], level: 'info' }
}
});
A similar config can be used to specify a different transport plugin than smtp. See the nodemailer docs for more details.
FAQs
SMTP Appender for log4js-node
We found that @log4js-node/smtp 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
GitHub postponed a new billing model for self-hosted Actions after developer pushback, but moved forward with hosted runner price cuts on January 1.

Research
Destructive malware is rising across open source registries, using delays and kill switches to wipe code, break builds, and disrupt CI/CD.

Security News
Socket CTO Ahmad Nassri shares practical AI coding techniques, tools, and team workflows, plus what still feels noisy and why shipping remains human-led.