Click to See Complete Forum and Search --> : Sending mail from HTML


Reham
12-23-2002, 03:02 AM
Hi All

How can I send mail from HTML? please advice

ShrineDesigns
12-23-2002, 04:13 AM
by using a form you can send email or whatever you want
you can replace the "mailto:me@domain.com" with a cgi/perl script if need be

example:

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<title></title>
</head>
<body>
<form action="mailto:me@domain.com" method="post" name="myForm">
<input name="myText" type="text">
<input name="" type="submit" value="Submit">
</form>
</body>
</html>

Beach Bum
12-23-2002, 07:46 PM
you can also do this with a simple link:

'<a href=\"mailto: . . .