View Full Version : Email Form
CBJeff
12-30-2020, 01:21 AM
Hi All,
I am still using Namo Webeditor 5 because I am most familiar with it. I'd like to insert a form on a page that the visitor enters their email address and hits submit and the info is sent to my email box. I am not having any luck finding such a thing. What I have found really has no instructions on how to modify it to work for me. Can anyone help me with this? I also do not want to use any of the online services that charge.
Thanks,
Jeff Walters
keyboard
01-01-2021, 12:53 AM
Hi Jeff,
Unfortunately I haven't used the specific software you're referring to. I had a quick look and it appears that it has been discontinued (and version 5 is quite old on top of that) so it is unlikely that anyone here will be able to help with that particular software.
CBJeff
01-01-2021, 01:51 AM
Hi Jeff,
Unfortunately I haven't used the specific software you're referring to. I had a quick look and it appears that it has been discontinued (and version 5 is quite old on top of that) so it is unlikely that anyone here will be able to help with that particular software.
Hi,
I wasn’t looking for help with Namo. I know how to use it. I’m looking for a JavaScript for a simple email form that I can insert. What I’ve found so far does not give much of any information on how to fine tune it to my needs.
Jeff
coothead
01-01-2021, 11:05 AM
Hi there CBJeff,
It is HTML not JavaScript that is used to create forms
with a server side language like PHP to process it
A basic form might look something like this...
<form action="/my-handling-form-page" method="post">
<ul>
<li>
<label for="name">Name:</label>
<input type="text" id="name" name="user_name">
</li>
<li>
<label for="mail">E-mail:</label>
<input type="email" id="mail" name="user_email">
</li>
<li>
<label for="msg">Message:</label>
<textarea id="msg" name="user_message"></textarea>
</li>
</ul>
</form>
Further reading:-
MDN - your very first experience of creating a web form (https://developer.mozilla.org/en-US/docs/Learn/Forms/Your_first_form)
coothead
CBJeff
01-01-2021, 06:58 PM
Thank you for your help. This is pretty much what I will looking for. I also appreciate the link. I am in the process of reading and hope to be able to ad a submit button to it so it will be usable.
Jeff
coothead
01-01-2021, 07:40 PM
Hi there CBJeff,
....hope to be able to add a submit button to it so it will be usable.
You will find full instructions for that further down the page...
MDN - add a button to allow the user to send, or "submit", their data (https://developer.mozilla.org/en-US/docs/Learn/Forms/Your_first_form#The_button_element)
coothead
CBJeff
01-07-2021, 06:49 PM
Thank you for your help. This is pretty much what I will looking for. I also appreciate the link. I am in the process of reading and hope to be able to ad a submit button to it so it will be usable.
Jeff
Well I did all the reading. The form you sent me was great however I am not a programmer or coder and am totally lost on the explanation of creating a button for submit. So I think I should just play it safe an continue using a email Hyperlink for customers to use when writing to me. Thank you for your help.
Jeff
Powered by vBulletin® Version 4.2.2 Copyright © 2021 vBulletin Solutions, Inc. All rights reserved.