forked from shapeshed/express_example
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathserver.js
142 lines (115 loc) · 3.53 KB
/
server.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
var port = process.env.C9_PORT || 15450 || 15919; /* Change 13087 to the port specified for your app */
/**
* Module dependencies.
*/
var express = require('express');
var app = module.exports = express.createServer();
var nodemailer = require("nodemailer");
// Configuration
var qs = require('qs');
app.configure(function(){
app.set('views', __dirname + '/views');
app.set('view engine', 'jade');
app.use(express.bodyParser());
app.use(express.methodOverride());
app.use(require('stylus').middleware({ src: __dirname + '/public' }));
app.use(express.static(__dirname + '/public'));
//app.use(express.static(__dirname));
app.use(app.router);
app.set('view options', { layout: false });
});
app.configure('development', function(){
app.use(express.errorHandler({ dumpExceptions: true, showStack: true }));
});
app.configure('production', function(){
app.use(express.errorHandler());
});
// Routes
app.get('/', function(req, res){
res.render('index', {
title: 'Home',
});
});
app.get('/about', function(req, res){
res.render('about', {
title: 'About',
});
});
app.get('/product', function(req, res){
res.render('product', {
title: 'Product Overview',
});
});
app.get('/testimonials', function(req, res){
res.render('testimonials', {
title: 'Testimonials',
});
});
app.get('/contact', function(req, res){
res.render('contact', {
title: 'Contact',
});
});
app.post('/contact', function(req, res){
//var strung=qs.parse(req.body.user)
console.log(req.body.user);
//console.log(req.body.user.email);
//console.log(req.body.user.name);
var postOptions = {
from: req.body.user.email ,// sender address
to: "[email protected]", // list of receivers ,
subject: "Got a thumbs form submit from " +req.body.user.name+ ' '+req.body.user.email+ ' at '+port,// Subject line
text: "text ✔"+req.body.user.comment,// plaintext body
html: req.body.user.comment // html body
}
// send mail with defined transport object
smtpTransport.sendMail(postOptions, function(error, response){
if(error){
console.log(error);
}else{
console.log("Message sent: " + response.message);
}
smtpTransport.close(); // shut down the connection pool, no more messages
});
//res.send(req.body);
res.render('../views/thanks',{
title:'Thank You'
});
});
app.get('/thanks', function(req, res){
res.render('thanks', {
title: 'Thanks for the Food!',
});
});
// Only listen on $ node app.js
if (!module.parent) {
app.listen(port);
console.log("Express server listening on port %d", app.address().port);
}
// create reusable transport method (opens pool of SMTP connections)
var smtpTransport = nodemailer.createTransport("SMTP",{
service: "Gmail",
auth: {
user: "[email protected]",
pass: "guidethewibe"
}
});
/*
// setup e-mail data with unicode symbols
var mailOptions = {
from: "Elias Moosan ✔ <[email protected]>", // sender address
to: "[email protected]", // list of receivers ,
subject: "Thumbs App started on port ✔"+port,// Subject line
text: "Hello world the app started text ✔", // plaintext body
html: "<b>Hello world app strted html ✔</b>" // html body
}
// send mail with defined transport object
smtpTransport.sendMail(mailOptions, function(error, response){
if(error){
console.log(error);
}else{
console.log("Message sent: " + response.message);
}
smtpTransport.close(); // shut down the connection pool, no more messages
});
*/