help my mail system
hi how are you doing?
I try to run this E-mail system,but it is not working.
my php is 4.2 and My e-mail is STMP so it should be ok
my phpeditor says"Failed to Connect in c:\itohideo\ito2.php on line 29";
One more QUA! Could you tell me when I forget my Pwd, I just send my E-mail. And Pwd goes to my acount.
HOw could you do it. Please send me codes or site which will help me.
E-mail system
save as PK.php
<body>
<form action="ito2.php" method="post">
<table border="1">
<tbody>
<tr>
<td>Name</td>
<td><input type="text" size="50" maxlength="50" name="yourname">
</td>
</tr>
<tr>
<td>Mailaddress</td>
<td><input type="text" size="50" maxlength="200" name="mailadrs">
</td>
</tr>
<tr>
<td>Mail Title</td>
<td><input type="text" size="50" maxlength="200" name="subject">
</td>
</tr>
<tr>
<td>Comments</td>
<td><textarea ros="10" cols="80" name="msg"></textarea>
</td>
</tr>
</tbody>
</table>
<br>
<input type="submit" name="submit" value="send">
<input type="reset" name="reset" value="reset">
</form>
</body>
save as ito2.php
<?php
$sendto = "itohideo@domaindlx.com";
$yourname = $POST['yourname'];
$mailadrs = $POST['mailadrs'];
$subject = $POST['subject'];
$msg = $POST['msg'];
$no = 0;
if ($yourname == "") {
print("Please Enter your Name<br>\n");
$no = 1;
}
if ($mailadrs == "") {
print("Please Enter your mailad<br>\n");
$no = 1;
}
if($subject == "") {
print("Please Enter your title<br>\n");
$no = 1;
}
if ($msg == "") {
print("Please Enter your comments<br>\n");
$no = 1;
}
if ($no != 1) {
$from = "From:" .$yourname. "\n";
mail($sendto, $subject, $msg, $from);
} else {
echo "Mail did not send.";
}
?>
Thank you for helping and time
bye