Slip no. 23. Write a PHP script to design a form to compose/write an email with following details.
HTML File:
<html>
<head>
<title>HTML email</title>
</head>
<body>
<form action=slip23_2.php>
<table border=1>
<tr><td>To<input type=text name=to></td></tr>
<tr><td>subject<input type=text name=sub></td></tr>
<tr>
<td>Message<input type=textarea name=msg></td></tr>
<tr>
<td><input type=submit value="SEND MAIL"></td>
</tr>
</table>
</form>
</body>
</html>
PHP file :
<?php
$to = $_GET['to'];
$subject = $_GET['sub'];
$message = $_GET['msg'];
mail($to,$subject,$message); // Always set content-type when sending HTML email
?>
HTML File:
<html>
<head>
<title>HTML email</title>
</head>
<body>
<form action=slip23_2.php>
<table border=1>
<tr><td>To<input type=text name=to></td></tr>
<tr><td>subject<input type=text name=sub></td></tr>
<tr>
<td>Message<input type=textarea name=msg></td></tr>
<tr>
<td><input type=submit value="SEND MAIL"></td>
</tr>
</table>
</form>
</body>
</html>
PHP file :
<?php
$to = $_GET['to'];
$subject = $_GET['sub'];
$message = $_GET['msg'];
mail($to,$subject,$message); // Always set content-type when sending HTML email
?>
0 Comments