Kevin Powell - CommunityKP-C
Kevin Powell - Community2y ago
10 replies
Crume

contact form email doesn't have the message from a textarea input

my contact form works, but the email i get doesn't have the message from the textarea included. what is the problem here?
html
<form onsubmit="emailSend(); reset(); return false;">
                    <input type="text" id="name" name="name" placeholder="Name" required>
                    <input type="email" id="email" name="email" placeholder="E-Mail" required>
                    <textarea rows="5" id="message" cols="60" name="message" placeholder="Message" autocomplete="off" required></textarea>
                    <button type="submit" class="submit-button">Send message</button>

js
var userName = document.getElementById('name').value;
    var email = document.getElementById('email').value;
    var message = document.getElementById('message').value;
    var messageBody = "Name " + userName +
    "<br/> Email " + email;
    "<br/> Message " + message;


i removed every unnecessary code from above
Was this page helpful?