|
|
|
เขียนโค้ด php ให้โปรแกรมทำงานโดยส่งเมล์เกี่ยวกับโปรโมชั่นไปหาลูกค้าได้เอง แล้วเลือกอีเมล์ของลูกค้ามาจากฐานข้อมูลได้อย่างไรค่ะ |
|
|
|
|
|
|
|
ต้องการให้มันส่งเมล์กับลูกค้าได้ทุกคน โดยเขียนโค้ดแค่ครั้งเดียว แต่เมล์ของลูกค้า จะเก็บไ้ว้ในตัวแปรอ่ะค่ะ ต้องทำงัยดี ให้มันสามารถรันอีเมล์ไ้ด้ทุกเมล์
|
|
|
|
|
Date :
2011-06-01 17:16:56 |
By :
yuikukung |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
เวลาส่งก็ เข้า loop สิครับ
|
|
|
|
|
Date :
2011-06-01 18:44:13 |
By :
slurpee55555 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Code (PHP)
<html>
<head>
<title>ThaiCreate.Com PHP Sending Email</title>
</head>
<body>
<?
$objConnect = mysql_connect("localhost","root","root") or die("Error Connect to Database");
$objDB = mysql_select_db("mydatabase");
$strSQL = "SELECT * FROM customer";
$objQuery = mysql_query($strSQL) or die ("Error Query [".$strSQL."]");
while($objResult = mysql_fetch_array($objQuery))
{
$strTo = $objResult["Email"];
$strSubject = "Test Send Email";
$strHeader = "Content-type: text/html; charset=windows-874\n"; // or UTF-8 //
$strHeader .= "From: Mr.Weerachai Nukitram<[email protected]>\nReply-To: [email protected]";
$strVar = "My Message";
$strMessage = "
<h1>My Message</h1><br>
<table width='285' border='1'>
<tr>
<td><div align='center'><strong>My Message </strong></div></td>
<td><div align='center'><font color='red'>My Message</font></div></td>
<td><div align='center'><font size='2'>My Message</font></div></td>
</tr>
<tr>
<td><div align='center'>My Message</div></td>
<td><div align='center'>My Message</div></td>
<td><div align='center'>My Message</div></td>
</tr>
<tr>
<td><div align='center'>".$strVar."</div></td>
<td><div align='center'>".$strVar."</div></td>
<td><div align='center'>".$strVar."</div></td>
</tr>
</table>";
@mail($strTo,$strSubject,$strMessage,$strHeader); // @ = No Show Error //
}
?>
</body>
</html>
|
|
|
|
|
Date :
2011-06-09 20:42:42 |
By :
webmaster |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 04
|