Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
<form onSubmit="SendToEmail(this)">
...
</form>
$url = "";
$url += "mailto:";
$url += $target;
$url += "?subject=";
$url += $subject;
$url += "&body=";
$url += $emailbody;
window.location = $url;
Not for the first timecLFlaVA said:manarth, aren't you getting JavaScript and PHP a little crossed?
<html dir="ltr">
<head>
<meta http-equiv="Content-Language" content="en-us">
<meta http-equiv="Content-Type" content="text/html; charset=windows-1252">
<title>Simple Form</title>
</head>
<body>
<table border="0" width="100%" id="table1">
<tr>
<td>
<form method="GET" name="myform" action="mailto:mymail@mydomain.com" enctype="text/plain">
<table border="0" width="100%" id="table2">
<tr>
<td width="106">Subject</td>
<td><input type="text" name="subject" size="100"></td>
</tr>
<tr>
<td width="106">First Name</td>
<td><input type="text" name="f_name" size="20"></td>
</tr>
<tr>
<td width="106">Last Name</td>
<td><input type="text" name="l_name" size="20"></td>
</tr>
</table>
<p> </p>
<p><input type="submit" value="Submit" name="B1"><input type="reset" value="Reset" name="B2"></p>
</form>
</td>
</tr>
</table>
</body>
</html>
perryair said:in regard to your code above.. how can I just send it as "POST"
mailto:[COLOR=red][ignore]email_address@example.com[/ignore][/color]?subject=[COLOR=red]subject_line[/color]&body=[COLOR=red]body_text[/color]
<html><head><title>Tubularity - eREPORT</title></head>
<body bgcolor="yellow"><div align="center">
<b>TO:employer@work.com
SUBJECT:
Expenses
</b><form method="POST"
action="mailto:
employer@work.com
?subject=
Expenses
"enctype="text/plain" target=_blank>
<textarea name="Data" rows="20"
cols="80" readonly>
EMPLOYEE: CliveC DATE: 19990821
------------------------------------------------------------
EXPENSES
Sun 19990815 110 Taxi 22.00
Sun 19990815 220 Dinner 12.00
Sun 19990815 800 Lodging 109.91
Mon 19990816 200 Breakfast 6.22
Mon 19990816 210 Lunch 5.50
Mon 19990816 220 Dinner 36.49
Mon 19990816 310 Telephone 13.28
Mon 19990816 800 Lodging 109.91
Tue 19990817 200 Breakfast 6.20
Tue 19990817 210 Lunch 5.48
Tue 19990817 220 Dinner 35.95
Tue 19990817 310 Telephone 5.28
Tue 19990817 310 Telephone 6.70
Tue 19990817 800 Lodging 109.91
Wed 19990818 200 Breakfast 6.80
Wed 19990818 210 Lunch 6.67
Wed 19990818 220 Dinner 12.50
Wed 19990818 310 Telephone 6.42
Wed 19990818 310 Telephone 5.20
Wed 19990818 900 Car Rental 153.08
Wed 19990818 110 Taxi 22.00
TOTAL 697.50
</textarea><br><br><b>
<input type="submit" value="Submit">
</b></form></body></html>