how to design send email using form by HTML
-
i want to create a form to send email how can i create it using just html? that mean i want to create a form then i clik submit the all the data in the form with send by email
AFAIK, you can't do this using *just* HTML. You have to use some sort of server scripting language and a mailing component. ASP supports this functionality if you're a Windows guy, or if you're on *nix, PHP does this *very* easily (1 function call). Jon Sagara "We assume you already know not to consider something like Windows as a firewall platform. Does the name "Windows" evoke images of security? Silly rabbit, Windows is for desktops." -- Unix System Administration Handbook
-
AFAIK, you can't do this using *just* HTML. You have to use some sort of server scripting language and a mailing component. ASP supports this functionality if you're a Windows guy, or if you're on *nix, PHP does this *very* easily (1 function call). Jon Sagara "We assume you already know not to consider something like Windows as a firewall platform. Does the name "Windows" evoke images of security? Silly rabbit, Windows is for desktops." -- Unix System Administration Handbook
Indeed... you're going to need more than just HTML. Try searching at google for formmail. Or.. you could learn PHP.. which is nice.
-
i want to create a form to send email how can i create it using just html? that mean i want to create a form then i clik submit the all the data in the form with send by email
-
i want to create a form to send email how can i create it using just html? that mean i want to create a form then i clik submit the all the data in the form with send by email
Just use the following, it'll use the web clients default mail software:
:suss: