-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathapp.js
254 lines (198 loc) · 6.1 KB
/
app.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
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
var express = require("express");
var app = express();
var request = require("request");
var mysql = require('mysql');
var mongo = require('mongodb');
var MongoClient = require('mongodb').MongoClient;
var url = "mongodb://localhost:27017/gentils";
var http = require("http");
var path = require('path');
var bodyParser = require('body-parser');
var router = express.Router();
//var path = __dirname + '/public/';
var path = __dirname + '/views/';
//var nodemailer = require('nodemailer');
var nodemailer = require('nodemailer');
app.use('/public', express.static('public'))
app.use(express.static(__dirname + '/public'));
app.use(bodyParser.urlencoded({ extended: true }));
///mongo db-----------------/////////////////////
app.post('/thank-you', function(req, res, next) {
var transporter = nodemailer.createTransport({
service: 'gmail',
auth: {
user: 'vishnuboppani07@gmail.com',
pass: 'vishnu007'
}
});
const mailOptions = {
from:'<p>'+req.body.gentil_name+'', // sender address
to: 'vishnuboppani07@gmail.com', // list of receivers
subject: 'Gentils organics - Contact Form', // Subject line
html: '<table style="border: 1px solid red;">'+
'<tr>'+
'<td>Name: </td><td>'+req.body.gentil_name+'</td>'+
'</tr>'+
'<tr>'+
'<td>Mail: </td><td>'+req.body.gentil_email+'</td>'+
'</tr>'+
'<tr>'+
'<td>Phone: </td><td>'+req.body.gentil_phone+'</td>'+
'</tr>'+
'<tr>'+
'<td>Message: </td><td>'+req.body.gentil_message+'</td>'+
'</tr>'+
'</table>'// plain text body
};
transporter.sendMail(mailOptions, function (err, info) {
if(err)
console.log(err)
else
console.log(info);
});
MongoClient.connect(url, function(err, db) {
if (err) throw err;
var dbo = db.db("gentils");
var myobj = {
name: req.body.gentil_name,
email: req.body.gentil_email,
phone: req.body.gentil_phone,
address: req.body.gentil_message
};
dbo.collection("users2").insertOne(myobj, function(err, res) {
if (err) throw err;
console.log("1 document inserted");
db.close();
});
});
res.redirect('/thank-you');
});
//////////////////////////mongodb/////////////////////
var con = mysql.createConnection({
host: "localhost",
user: "root",
password: "*****",
database: "mydb2"
});
app.post('/about-us', function(req, res, next) {
console.log(req.body.gentil_name);
console.log(req.body.gentil_email);
console.log(req.body.gentil_phone);
console.log(req.body.gentil_message);
con.connect(function(err) {
if (err) throw err;
console.log("connected");
var sql = "INSERT INTO `customers`(`name`,`email`,`phone`,`address`) VALUES ('"+req.body.gentil_name+"','"+req.body.gentil_email+"','"+req.body.gentil_phone+"','"+req.body.gentil_message+"')";
con.query(sql, function(err, result) {
if(err) throw err;
console.log("table created");
});
});
var transporter = nodemailer.createTransport({
service: 'gmail',
auth: {
user: 'vishnuboppani07@gmail.com',
pass: 'vishnu007'
}
});
// var name = '+'req.body.gentil_name'+';
const mailOptions = {
from:'<p>'+req.body.gentil_name+'', // sender address
to: 'vishnuboppani07@gmail.com', // list of receivers
subject: 'Gentils organics - Contact Form', // Subject line
html: '<table style="border: 1px solid red;">'+
'<tr>'+
'<td>Name: </td><td>'+req.body.gentil_name+'</td>'+
'</tr>'+
'<tr>'+
'<td>Mail: </td><td>'+req.body.gentil_email+'</td>'+
'</tr>'+
'<tr>'+
'<td>Phone: </td><td>'+req.body.gentil_phone+'</td>'+
'</tr>'+
'<tr>'+
'<td>Message: </td><td>'+req.body.gentil_message+'</td>'+
'</tr>'+
'</table>'// plain text body
};
transporter.sendMail(mailOptions, function (err, info) {
if(err)
console.log(err)
else
console.log(info);
});
//res.render('about-us');
res.redirect('/thank-you');
});
//---------start from here--routes ------------
router.get("/",function(req,res){
res.sendFile(path + "index.html");
});
router.get("/home",function(req,res){
res.sendFile(path + "index.html");
});
router.get("/about-us",function(req,res){
res.sendFile(path + "about-us.html");
});
router.get("/contact",function(req,res){
res.sendFile(path + "contact.html");
});
router.get("/contact-us",function(req,res){
res.sendFile(path + "contact-us.html");
});
router.get("/thank-you", function(req,res){
res.sendFile(path + "thanku.html")
});
router.get("/quality", function(req,res){
res.sendFile(path + "quality.html")
});
router.get("/aqua-products-calfyn",function(req,res){
res.sendFile(path + "aqua-products-calfyn.html");
});
router.get("/aqua-products-softner",function(req,res){
res.sendFile(path + "aqua-products-softner.html");
});
router.get("/pro-aqua-oxcee-tab",function(req,res){
res.sendFile(path + "pro-aqua-oxcee-tab.html");
});
app.use("/",router);
//-----------routes end from here------------
router.get("/",function(req,res){
res.sendFile(path + "index.html");
});
router.get("/aqua-products-calfyn",function(req,res){
res.sendFile(path + "aqua-products-calfyn.html");
});
router.get("/aqua-products-softner",function(req,res){
res.sendFile(path + "aqua-products-softner.html");
});
router.get("/contact-us",function(req,res){
res.sendFile(path + "contact-us.html");
});
router.get("/technology",function(req,res){
res.sendFile(path + "technology.html");
});
router.get("/rnd",function(req,res){
res.sendFile(path + "rnd.html");
});
router.get("/about-us",function(req,res){
res.sendFile(path + "about-us.html");
});
router.get("/aqua-products-calfyn",function(req,res){
res.sendFile(path + "aqua-products-calfyn.html");
});
router.get("/aqua-products-softner",function(req,res){
res.sendFile(path + "aqua-products-softner.html");
});
router.get("/our-products",function(req,res){
res.sendFile(path + "our-products.html");
});
router.get("/aqua-products-calfyn",function(req,res){
res.sendFile(path + "aqua-products-calfyn.html");
});
router.get("/aqua-products-softner",function(req,res){
res.sendFile(path + "aqua-products-softner.html");
});
app.listen(3000,function(){
console.log("Live at Port 3000");
});