Big commit

This commit is contained in:
Thomas FORGIONE
2015-07-29 11:04:38 +02:00
parent a914ed2a2d
commit c690accd4b
22 changed files with 238 additions and 12 deletions

View File

@@ -0,0 +1,25 @@
var mail = require('../../lib/mail.js');
var Log = require('../../lib/NodeLog.js');
module.exports.index = function(req, res) {
var text = '';
for (var i in req.body) {
text += i + ' : ' + req.body[i] + '\n'
}
mail.send({
from: req.session.user_id + " <" + req.session.user_id + "@toto.tata>",
to: "Thomas <thomas.forgione@gmail.com>",
subject: "By " + req.session.user_id,
text: text
}, function(err, message) {
if (err !== null) {
Log.mailerror(err);
}
});
res.redirect('/thankyou');
};

View File

@@ -0,0 +1,3 @@
module.exports = {
'/feedback-target': 'index'
};

View File

@@ -30,7 +30,7 @@ module.exports.index = function(req, res) {
);
});
res.redirect('/');
res.redirect('/prototype/tutorial');
});
} else {