|
|
|
จะเขียน ส่ง mail หาหลายๆคนเนี่ย ต้องทำไง ค่ะ mail($msendto,$msubject,$mmessage,$headers); แบบนี้ ได้หรือป่าว ค่ะ |
|
|
|
|
|
|
|
เก็บชื่อเมลล์ไว้ในตารางฐานข้อมูล แล้ว select ตัวแปรที่เก็บเมลล์ออกมา เอาตัวแปรที่เก็บ ส่งเมล์
เช่น
$msendto =$mail ; ถ้าเก็บไว้กี่คนก่อจะส่งตามจำนวนที่เราเก็บไว้ในตาราง $mail คือชื่อฟิลในตารางน่ะ
|
|
|
|
|
Date :
17 พ.ค. 2550 21:52:42 |
By :
paradol |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ไม่ค่ะ จะ ส่ง แต่ 6 mail ตายตัวเลยอะค่ะ
|
|
|
|
|
Date :
17 พ.ค. 2550 22:59:07 |
By :
จิ๊บ |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
$msendto ="[email protected],[email protected],[email protected],[email protected],";
$headers = "Content-type: text/html; charset=windows-874 \n";
$headers .= "from: A";
$msubject="จาก นู๋ เอ";
mail("[email protected]",$msubject,$mmessage,$headers);
mail("[email protected]",$msubject,$mmessage,$headers);
mail("[email protected]",$msubject,$mmessage,$headers);
mail("[email protected]",$msubject,$mmessage,$headers);
|
|
|
|
|
Date :
18 พ.ค. 2550 00:16:06 |
By :
limparty |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
$msendto="[email protected],[email protected],[email protected],[email protected]";
$msendto=explode(",",$msendto);//เป็นการแยกเมล์แต่ละคนโดยใช้เครื่องหมาย comma คั่นแล้วเก็บเป็น array
for ($i=0;$i<=count($msendto);$i++)
{
$headers = "Content-type: text/html; charset=windows-874 \n";
$headers .= "from: A";
$msubject="จาก นู๋ เอ";
mail($msendto[$i],$msubject,$mmessage,$headers);
}
|
|
|
|
|
Date :
20 พ.ค. 2550 10:30:48 |
By :
cyberskyclub.co.nr |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
แต้ถ้าส่ง6 คนตายตัวก็
$headers = "Content-type: text/html; charset=windows-874 \n";
$headers .= "from: A";
$msubject="จาก นู๋ เอ";
mail("[email protected]",$msubject,$mmessage,$headers);
mail("[email protected]",$msubject,$mmessage,$headers);
mail("[email protected]",$msubject,$mmessage,$headers);
mail("[email protected]",$msubject,$mmessage,$headers);
mail("[email protected]",$msubject,$mmessage,$headers);
mail("[email protected]",$msubject,$mmessage,$headers);
|
|
|
|
|
Date :
20 พ.ค. 2550 10:34:30 |
By :
cyberskyclub.co.nr |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 03
|