|
|
|
การส่งเมลล์แบบ bcc ซ่อน _ส่งอย่างไรครับ มีหลักการส่งอย่างไรครับผมไม่เข้าใจการส่งแบบ ซ่อนครับ ช่วยแนะนำหน่อยนะครับ |
|
|
|
|
|
|
|
Code (PHP)
<html>
<head>
<title>ThaiCreate.Com PHP Sending Email</title>
</head>
<body>
<?
$strTo = "[email protected]";
$strSubject = "Test Send Email";
$strHeader = "From: Mr.Weerachai Nukitram<[email protected]>\n";
$strHeader .= "Cc: Mr.Surachai Sirisart<[email protected]>\n";
$strHeader .= "Bcc: [email protected]";
$strMessage = "My Body & My Description";
$flgSend = @mail($strTo,$strSubject,$strMessage,$strHeader); // @ = No Show Error //
if($flgSend)
{
echo "Email Sending.";
}
else
{
echo "Email Can Not Send.";
}
?>
</body>
</html>
Ref : PHP Sending Email Cc and Bcc
|
|
|
|
|
Date :
2009-07-01 21:45:21 |
By :
webmaster |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 01
|