Skip to main content

React + Nodemailer: the email gets sent but it opens a new window and as well, how can I implement it on live website

I am using react + nodemailer to make a contact form for my portfolio website, however I'm having some issues.

First issue is that the email does get sent, but as soon as it sends it opens a new window with the message as part of the url, which is not supposed to happen.

Before submitting info for email

After submition of info

Second, I want to use it in a live website instead in only my localhost:3000 -> https://example.com, but I havent found anything in the docs of nodemailer.

Here is the code of the server and the react code:

import React from 'react';
import { useState } from 'react';
import './contactForm.css';
import { Footer } from '../../containers';

import axios from 'axios';

const ContactForm = () => {
     //const [status, setStatus] = useState("Submit");
     const [recipient_email, setEmail] = useState("");
     const [name, setName] = useState("");
     const [message, setMessage] = useState("");

     function sendMail(){
        if(recipient_email && name && message){
            axios
                .post('http://localhost:5000/send_email', {
                    recipient_email,
                    name,
                    message,
                })
                .then(() => alert('Message sent succesfuly'))
                .catch(() => alert('Oops something went wrong'));
            return;
        }
        return alert('Fill in all the fields to continue');
     };

  return (
    <div className='RO__ContactForm' id='contactForm'>
        <div className='RO__ContactForm-title'>
            <h3>Contact</h3>
            <h1>I'm here to help you level up</h1>
        </div>
        <div className='RO__ContactForm-content'>
            <div className='RO__ContactForm-content_description'>
                <p>I'm just on click away to help you take your company 
                    to the next level. Fill in the form to share more 
                    details about the project or your favorite movie. 
                    Either way, I'd love to talk.</p>
                <p></p>
            </div>
            <form
                className='RO__ContactForm-content_form'
                target='_blank'
                >
                <div className='RO__ContactForm-content_form_name'>
                    <div className='RO__ContactForm-content_form_nameTitle'>
                        <h5>What's your name?</h5>
                    </div>
                    <input 
                        className='RO_ContactForm-content_form_nameInput'
                        type= 'text'
                        id='name'
                        onChange={ (e) => setName(e.target.value) }
                        name='name' required 
                    />
                </div>
                <div className='RO__ContactForm-content_form_email'>
                    <div className='RO__ContactForm-content_form_emailTitle'>
                        <h5>Your email</h5>
                    </div>
                    <input
                        className='RO__ContactForm-content_form_emailInput'
                        type='email'
                        id='email'
                        onChange={ (e) => setEmail(e.target.value) }
                        name='email' required
                    />
                </div>
                <div className='RO__ContactForm-content_form_info'>
                    <div className='RO__ContactForm-content_form_infoTitle'>
                        <h5>What can I help you with?</h5>
                    </div>
                    <textarea
                        className='RO__ContactForm-content_form_infoContent'
                        id='message'
                        onChange={ (e) => setMessage(e.target.value) }
                        name='message' required
                    />
                </div>
                <div className='RO__ContactForm-content_form_button'>
                    <button 
                        onClick = {() => sendMail()} 
                        type='submit'
                    >
                        Submit

                    </button>
                </div>

            </form>
        </div>
        <div className='RO__ContactForm-footer'>
            <Footer  />
        </div>
        
    </div>
  )
}

export default ContactForm

server code:

const { response } = require('express');
const express = require('express');
const nodemailer = require('nodemailer');
const cors = require('cors');
const app = express();
const port = 5000;

app.use(cors());
app.use(express.json({ limit: '25mb' }));
app.use(express.urlencoded({ limit: '25mb' }));
app.use((req, res, next) => {
    res.setHeader('Access-Control-Allow-Origin', '*');
    next();
});

function sendEmail({ recipient_email, name, message }){
    return new Promise((resolve, reject) => {
        var transporter = nodemailer.createTransport({
            service: 'Hotmail',
            auth: {
                user: '***********@hotmail.com',
                pass: '**********',
            },
        });

        const mail_configs = {
            from: 'darkknight-3096@hotmail.com',
            to: 'irvin.rafael.3096@gmail.com',
            subject: 'Test',
            text: `Name: ${name} \n Email: ${recipient_email} \n Message: ${message}`,
        };
        transporter.sendMail(mail_configs, function(error, info){
            if(error){
                console.log(error);
                return reject({ message: 'An error has occured' });
            }
            return resolve({ message: 'Email has been sent succesfuly' });
        });
    });
}

app.get('/contactForm', (req, res) => {
    sendEmail()
        .then((response) => res.send(response.message), console.log(response.message))
        .catch((error) => res.status(500).send(error.message));
});

app.post("/send_email", (req, res) => {
    sendEmail(req.body)
        .then((response) => res.send(response.message))
        .catch((error) => res.status(500).send(error.message));
});

app.listen(port, () => {
    console.log(`nodemailerProject is listening at localhost:${port}`);
}); 
Via Active questions tagged javascript - Stack Overflow https://ift.tt/gwQANlT

Comments

Popular posts from this blog

ValueError: X has 10 features, but LinearRegression is expecting 1 features as input

So, I am trying to predict the model but its throwing error like it has 10 features but it expacts only 1. So I am confused can anyone help me with it? more importantly its not working for me when my friend runs it. It works perfectly fine dose anyone know the reason about it? cv = KFold(n_splits = 10) all_loss = [] for i in range(9): # 1st for loop over polynomial orders poly_order = i X_train = make_polynomial(x, poly_order) loss_at_order = [] # initiate a set to collect loss for CV for train_index, test_index in cv.split(X_train): print('TRAIN:', train_index, 'TEST:', test_index) X_train_cv, X_test_cv = X_train[train_index], X_test[test_index] t_train_cv, t_test_cv = t[train_index], t[test_index] reg.fit(X_train_cv, t_train_cv) loss_at_order.append(np.mean((t_test_cv - reg.predict(X_test_cv))**2)) # collect loss at fold all_loss.append(np.mean(loss_at_order)) # collect loss at order plt.plot(np.log(al...

Sorting large arrays of big numeric stings

I was solving bigSorting() problem from hackerrank: Consider an array of numeric strings where each string is a positive number with anywhere from to digits. Sort the array's elements in non-decreasing, or ascending order of their integer values and return the sorted array. I know it works as follows: def bigSorting(unsorted): return sorted(unsorted, key=int) But I didnt guess this approach earlier. Initially I tried below: def bigSorting(unsorted): int_unsorted = [int(i) for i in unsorted] int_sorted = sorted(int_unsorted) return [str(i) for i in int_sorted] However, for some of the test cases, it was showing time limit exceeded. Why is it so? PS: I dont know exactly what those test cases were as hacker rank does not reveal all test cases. source https://stackoverflow.com/questions/73007397/sorting-large-arrays-of-big-numeric-stings

How to load Javascript with imported modules?

I am trying to import modules from tensorflowjs, and below is my code. test.html <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Document</title </head> <body> <script src="https://cdn.jsdelivr.net/npm/@tensorflow/tfjs@2.0.0/dist/tf.min.js"></script> <script type="module" src="./test.js"></script> </body> </html> test.js import * as tf from "./node_modules/@tensorflow/tfjs"; import {loadGraphModel} from "./node_modules/@tensorflow/tfjs-converter"; const MODEL_URL = './model.json'; const model = await loadGraphModel(MODEL_URL); const cat = document.getElementById('cat'); model.execute(tf.browser.fromPixels(cat)); Besides, I run the server using python -m http.server in my command prompt(Windows 10), and this is the error prompt in the console log of my browser: Failed to loa...