commit
a4be20f8e1
@ -34,9 +34,15 @@ function smtpAppender(config, layout) {
|
|||||||
var msg = {
|
var msg = {
|
||||||
to: config.recipients,
|
to: config.recipients,
|
||||||
subject: config.subject || subjectLayout(firstEvent),
|
subject: config.subject || subjectLayout(firstEvent),
|
||||||
text: body,
|
|
||||||
headers: { "Hostname": os.hostname() }
|
headers: { "Hostname": os.hostname() }
|
||||||
};
|
};
|
||||||
|
|
||||||
|
if (!config.html) {
|
||||||
|
msg.text = body;
|
||||||
|
} else {
|
||||||
|
msg.html = body;
|
||||||
|
}
|
||||||
|
|
||||||
if (config.sender) {
|
if (config.sender) {
|
||||||
msg.from = config.sender;
|
msg.from = config.sender;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user