Matomo tracking
This commit is contained in:
@@ -28,11 +28,11 @@ exports.mail = function(data) {
|
||||
|
||||
// setup email data with unicode symbols
|
||||
let mailOptions = {
|
||||
from: extractFrom(data), // sender address
|
||||
to: app.get('CONF').mail.request.to, // comma separated list of receivers
|
||||
subject: "Equipment Anfrage", // Subject line
|
||||
text: "Hello world?", // plain text body
|
||||
html: "<b>Hello world?</b>" // html body
|
||||
from: extractFrom(data), // sender address
|
||||
to: app.get('CONF').mail.request.to, // comma separated list of receivers
|
||||
subject: "Equipment Anfrage: " + data.title, // Subject line
|
||||
text: JSON.stringify(data), // plain text body
|
||||
html: JSON.stringify(data) // html body
|
||||
};
|
||||
|
||||
let info = transporter.sendMail(mailOptions)
|
||||
|
||||
Reference in New Issue
Block a user