Commit 3c40c133 authored by Rosanny Sihombing's avatar Rosanny Sihombing Committed by Rosanny Sihombing
Browse files

MLAB-642: fixing the content format


(cherry picked from commit fbf59c98)
parent bfcd9fc8
...@@ -278,7 +278,7 @@ export = function (app:any, config:any, lang:string) { ...@@ -278,7 +278,7 @@ export = function (app:any, config:any, lang:string) {
let inputName = req.body.name; let inputName = req.body.name;
let inputContent = req.body.message; let inputContent = req.body.message;
let emailSubject = "Ihre Anfrage an das Transferportal"; let emailSubject = "Ihre Anfrage an das Transferportal";
let emailContent = "Es wurde eine Anfrage an das Transferportal gestellt: \n\n NAME: " + inputName + "\n NACHRICHT:\n "+ inputContent; let emailContent = "<div>Es wurde eine Anfrage an das Transferportal gestellt: <br/><br/>NAME: " + inputName + "<br/>NACHRICHT: "+ inputContent+"</div>";
async.waterfall([ async.waterfall([
function(done:any) { function(done:any) {
// send email // send email
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment