|
|
|
[สอบถาม] เรื่อส่งอีเมลล์ในของทุก member ฐานข้อมูลค่ะ |
|
|
|
|
|
|
|
Code (PHP)
<?php
$conn=@mysql_connect("localhost","root","root");
$db=@mysql_select_db("db_member");
$sql="select * from b_member ";
$query=@mysql_query($sql);
while($rs=@mysql_fetch_array($query))
{
$email=$rs["c_email"];
$emailfrom="[email protected]";
$emailsubject="หัวเรื่อง Email";
$to = $email;
$subject = "=?utf-8?B?".base64_encode("$emailsubject")."?=";
$header = "MIME-Version: 1.0\r\n";
$header .= "Content-type: text/plain; charset=utf-8\r\n";
$header .= "From: $emailfrom\r\n";
$header .= "Reply-To: [email protected]\r\n";
$header .= "X-Mailer: PHP/picoHosting";
$message = "ข้อความบรรทัดที่ 1\r\n";
$message = "ข้อความบรรทัดที่ 2\r\n";
$message = "ข้อความบรรทัดที่ 3\r\n";
mail($to, $subject, $messsage, $header);
}
?>
ลองดูนะครับ ไม่น่ายาก
ปอจัง
|
|
|
|
|
Date :
2010-08-12 23:22:33 |
By :
mflutoday |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ง่ายๆ เลย เขียนฟังชั่นเมลล์ขึ้นมา (ลองหาจากในเว็บนี้แหละครับ)
จากนั้นก็ใช้การ วนลูปเมลล์สมาชิก ครับ
เหอะๆ แบบข้างบนแหละครับ (ออกตัวง่ายๆ)
|
ประวัติการแก้ไข 2010-08-12 23:33:36
|
|
|
|
Date :
2010-08-12 23:31:01 |
By :
iieszz |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 03
|