Для проверки и отправки электронной почты на express. js - PullRequest
0 голосов
/ 30 апреля 2020

В сравнении с кодом я использую node и express для отправки электронной почты через HTML страницу index.html. Я сделал приложение, чтобы сделать это, и это на app.js файле:

const express = require('express');
const path = require('path');
const nodeMailer = require('nodemailer');
const bodyPaser = require('body-parser');

const app = express();

app.get('/', function (req, res) {
res.sendFile(path.join(__dirname + 'index.html'));
});


app.set('view engine', 'html');
app.use(express.static('public'));
app.use(bodyPaser.urlencoded({ extended: true }));
app.use(bodyPaser.json());
var port = 3000;
app.get('/', function (req, res) {
res.render('index.html');
app.locals.layout = false;
});


//internet connectivity check out
function checkInternet(cb) { 
require('dns').lookup('google.com', function (err) { 
    if (err && err.code == "ENOTFOUND") {
        cb(false);
    } else { 
        cb(true);
    }
})
};



app.post('/', (req, res) => {
const output = `
<p>You have a new contact request</p>
<h3>Contact Details</h3>
<ul>
<li>Name:${req.body.name}</li>
<li>Email:${req.body.email}</li>
</ul>
<h3>Message</h3>
<p>${req.body.message}</p>`;

// create reusable transporter object using the default SMTP transport
let transporter = nodeMailer.createTransport({
    host: "mail.example.com",
    port: 465,
    secure: true,
    auth: {
        user: 'contact@example.com',
        pass: '$100000app' 
    },
    tls: {
        rejectUnauthorized: false
    }
 });

// send mail with defined transport object
let mailOptions = {
    from: `${req.body.email}`, // sender address
    to: "contact@example.com", // list of receivers
    subject: "Customer Message", // Subject line
    text: `SenderName: ${req.body.name}, --Message: ${req.body.message}`, // plain text body
    html: output // html body
};

transporter.sendMail(mailOptions, (error, info) => {
    if (error) {
        return console.log(error);
    }

    console.log("Message sent: %s", info.messageId);
    console.log("Preview URL: %s", nodeMailer.getTestMessageUrl(info));

    if (info.messageId) {
        res.redirect('back');
     res.send(true);
    }
});
});

app.listen(3000, () => console.log('server is running at port 3000'));

В файле index.html есть функция для проверки информации формы и отправки ее:

 function formValidatoin() {
    var status = navigator.onLine;
    if (status) {
        $.ajax({
            success: function (returns) {
                if (returns)
                    alert("Email has been sent successfully");
                else
                    alert("Email has NOT been sent");
            }
        });
        return true;
    } else {
        alert('No internet connection \n Please check your connection and retry.')
        return false;
    }
};

И это проект в проводнике:

enter image description here

Дело в том, что он работал отлично, пока я не сделал некоторые изменения и с тех пор, как он перестал работать , кто-нибудь знает, что с ним не так?!

Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...