ใครเคยเขียนโปรแกรม ส่ง Mail บ้างช่วยหน่อยครับ ในแง่ของ Application มันแสดง Send Sucessfull ก็จริงแต่พอเปิดดูเมล์แล้วกลับไม่ได้รับเมล์อะไรเลย
<html>
<head>
<title>Untitled Document</title>
<meta http-equiv="Content-Type" content="text/html; charset=windows-874">
</head>
<body>
<?php
function is_email_valid($email)
{
if(eregi("^[a-z0-9\._-]+@+[a-z0-9\._-]+\.+[a-z]{2,3}$",$email))
return TRUE;
else
return FALSE;
}
$t_email=$_POST['t_email'];
$f_email=$_POST['f_email'];
$subject=$_POST['subject'];
$message=$_POST['message'];
$send=$_POST['send'];
if ($t_email&&$f_email&&$subject&&$message&&$send)
{
if (is_email_valid($t_email)&&is_email_valid($f_email))
{
echo "Sending email using the following mail()command...<p/>";
echo 'mail($t_email,$subject,$message,"From:$f_email")<p/>';
echo "And this expands to:<p/>";
echo 'mail('.$t_email.','.$subject.','.$message.',"From:'.$f_email.'");<p/>';
mail($t_email,$subject,$message,"From: $f_email");
echo "Send Successfully!!!";
} else
{
if (!is_email_valid($t_email))
{
echo "<b>To</b> email address was <b>invalid</b><br/>";
}
if (!is_email_valid($f_email))
{
echo "<b>From</B> email address was <b>invalid</b><br/>";
}
}
}else{
?>
<form method="post" action="test3.php">
<table border="0">
<tr>
<td>To Email Address:</td>
<td><input type="text" name="t_email" value="Valid Email Address"></td>
</tr>
<tr>
<td>From Email Address:</td>
<td><input type="text" name="f_email" value="Valid Email Address"></td>
</tr>
<tr>
<td>Subject:</td>
<td><input type="text" name="subject" value="Subject Here"></td>
</tr>
<tr>
<td colspan="2">Message:<br/> <textarea cols="28" rows="5" wrap="physical" name="message">
Message Here
</textarea>
<p/> </td>
</tr>
<tr>
<td colspan="2"><input type="submit" name="send" value="Send Email"> <input name="reset" type="reset" value="Reset Form"></td>
</tr>
</table>
</form>
<?php
}
?>
</body>
</html>
ในแง่ของ Application มันแสดง Send Sucessfull ก็จริงแต่พอเปิดดูเมล์แล้วกลับไม่ได้รับเมล์อะไรเลยไม่ทราบว่าใครเคยเขียนช่วยแนะนำว่าต้อง Set เครื่อคอมพ์อารายบ้างครับTag : - - - -
Date :
30 ก.ย. 2548 10:32:47
By :
tanawatnu
View :
2493
Reply :
1
ผมก็ไม่ค่อยได้เขียนน่ะครับ แต่คุณ up ขึ้น server ยังครับ ถ้ายังก็ต้องลงโปรแกรมพวก mail server หรือว่าอะไรเนี้ยแหระ ผมก็ไม่เคยใช้ เพราะถ้าจะส่งเมล์ผมก็ up ก่อนแล้วค่อยมาแก้ทีหลัง 55
Date :
30 ก.ย. 2548 18:01:58
By :
งง
Load balance : Server 02