Crume
Crume
KPCKevin Powell - Community
Created by Crume on 1/21/2024 in #front-end
contact form email doesn't have the message from a textarea input
Yeah, that was it. Thanks x)
11 replies
KPCKevin Powell - Community
Created by Crume on 1/21/2024 in #front-end
contact form email doesn't have the message from a textarea input
it is filled up with working data, so the contact form itself sends the email out, but doesn't have the message included. the input fields get the value. the textarea not, so i think its different for the textarea, but i don't know why
11 replies
KPCKevin Powell - Community
Created by Crume on 1/21/2024 in #front-end
contact form email doesn't have the message from a textarea input
Email.send({
Host : "smtp.elasticemail.com",
Username : "xxxxxxxxxxxxxxx",
Password : "xxxxxxxxxxx",
To : 'xxxxxxxxx',
From : "xxxxxxxxxxxx",
Subject : "contact request on xxxxxxxxxxxx",
Body : messageBody
}).then(
message => alert(message)
);
Email.send({
Host : "smtp.elasticemail.com",
Username : "xxxxxxxxxxxxxxx",
Password : "xxxxxxxxxxx",
To : 'xxxxxxxxx',
From : "xxxxxxxxxxxx",
Subject : "contact request on xxxxxxxxxxxx",
Body : messageBody
}).then(
message => alert(message)
);
11 replies
KPCKevin Powell - Community
Created by Crume on 1/21/2024 in #front-end
contact form email doesn't have the message from a textarea input
it is made with https://smtpjs.com/ and easy smtp access from elasticemail. the function is down below
11 replies