# SMTP Appender
Sends log events as emails. If you use this appender, you should also call logger.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 @tsed/logger
npm install @tsed/logger-smtp
2
# Configuration
type
-smtp
SMTP
-object
(optional, if not present will usetransport
field)host
-string
(optional, defaults tolocalhost
)port
-integer
(optional, defaults to25
)auth
-object
(optional) - authentication detailsuser
-string
pass
-string
transport
-object
(optional, if not present will useSMTP
) - seenodemailer
(opens new window) docs for transport optionsplugin
-string
(optional, defaults tosmtp
) - the nodemailer transport plugin to useoptions
-object
- configuration for the transport plugin
attachment
-object
(optional) - send logs as email attachmentenable
-boolean
(optional, defaults tofalse
)message
-string
(optional, defaults toSee logs as attachment
) - message to put in body of emailfilename
-string
(optional, defaults todefault.log
) - attachment filename
sendInterval
-integer
(optional, defaults to0
) - batch emails and send in one email everysendInterval
seconds, if0
then every log message will send an email.shutdownTimeout
-integer
(optional, defaults to5
) - 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 tofalse
) - send the email as HTML instead of plain textlayout
-object
(optional, defaults to basicLayout) - see layouts (opens new window)cc
-string
(optional) - email addresses to send the carbon-copy logs tobcc
-string
(optional) - email addresses to send the blind-carbon-copy logs to
# Example (default config)
import {Logger} from "@tsed/logger";
import "@tsed/logger-smtp";
const logger = new Logger("loggerName");
logger.appenders.set("email", {
type: "smtp",
level: ["error"],
recipients: "dev.team@company.name"
});
2
3
4
5
6
7
8
9
10
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.
# Example (logs as attachments, batched)
import {Logger} from "@tsed/logger";
import "@tsed/logger-smtp";
const logger = new Logger("loggerName");
logger.appenders.set("email", {
type: "smtp",
level: ["error"],
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
});
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
This configuration will send an email once every hour, with all the log events of level ERROR
and above as an attached file.
# Example (custom SMTP host)
import {Logger} from "@tsed/logger";
import "@tsed/logger-smtp";
const logger = new Logger("loggerName");
logger.appenders.set("email", {
type: "smtp",
level: ["error"],
recipients: "dev.team@company.name",
SMTP: {host: "smtp.company.name", port: 8025}
});
2
3
4
5
6
7
8
9
10
11
This configuration can also be written as:
import {Logger} from "@tsed/logger";
import "@tsed/logger-smtp";
const logger = new Logger("loggerName");
logger.appenders.set("email", {
type: "smtp",
level: ["error"],
recipients: "dev.team@company.name",
transport: {
plugin: "smtp",
options: {
host: "smtp.company.name",
port: 8025
}
}
});
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
A similar config can be used to specify a different transport plugin than smtp
. See the nodemailer
(opens new window) docs for more details.
Last Updated: 10/26/2023, 6:30:07 AM
Other topics
- Console Appender
- File Appender
- Date Rolling File Appender
- Connect Appender
- Standard Out Appender
- Standard Error Appender
- Insight Appender
- LogEntries Appender
- LogStash HTTP Appender
- LogStash UDP Appender
- Loggly Appender
- RabbitMQ Appender
- Seq Appender
- Slack Appender
- SMTP Appender
- Basic layout
- Colored layout
- Dummy layout
- Message Pass-Through layout
- Object layout
- Json layout
- Pattern layout