PHP/MySQL,HTML,JavaScript,Java Programming examples. Free Software, Earn Money Online.
Sending Email in PHP
<?php
echo "<h3>Sending Email in PHP</h3>";
if(isset($_POST['txtto']) && isset($_POST['txtmsg']))
{
$to=$_POST['txtto'];
$frm=$_POST['txtfrom'];
$sub=$_POST['txtsub'];
$msg=$_POST['txtmsg'];
if (mail($to,$sub,$msg,"From:".$frm) )
echo "Email sent succesfully";
else
echo "Email not sent succesfully";
}
?>
<html>
<head>
<title>Email in PHP</title>
</head>
<body>
<form name='mailfrm' method='post'>
<table border='0'>
<tr><td>To :</td><td><input type='text' name='txtto' size='25' /></td></tr>
<tr><td>From:</td><td><input type='text' name='txtfrom' size='25' /></td></tr>
<tr><td>Subject:</td><td><input type='text' name='txtsub' size='30' /></td></tr>
<tr><td>Message</td><td><textarea name='txtmsg' rows='5' cols='20' ></textarea></td></tr>
<tr><td><input type='submit' value='send' /></td></tr>
</form>
</body>
</html>
Subscribe to:
Post Comments (Atom)
Important note: from now on, I'll always visit your blog. Please don't hesitate to visit me. Let's be more than just followers...let's be faithful readers! Thanks :)
ReplyDeleteLovers' Shore
http://lovers-shore.blogspot.com/