จะส่งอีเมล์โดยใช้ PHP ได้อย่างไร?


312

ฉันใช้ PHP บนเว็บไซต์และฉันต้องการเพิ่มฟังก์ชันการส่งอีเมล

ฉันติดตั้ง WAMPSERVER แล้ว

ฉันจะส่งอีเมลโดยใช้ PHP ได้อย่างไร


19
อ่านคู่มือ
diEcho

คำตอบ:


442

การใช้mail()ฟังก์ชั่นของ PHP เป็นไปได้ โปรดจำไว้ว่าฟังก์ชั่นเมลจะไม่ทำงานบนเซิร์ฟเวอร์ภายใน

<?php
$to      = 'nobody@example.com';
$subject = 'the subject';
$message = 'hello';
$headers = 'From: webmaster@example.com' . "\r\n" .
    'Reply-To: webmaster@example.com' . "\r\n" .
    'X-Mailer: PHP/' . phpversion();

mail($to, $subject, $message, $headers);
?> 

อ้างอิง:


6
ถ้าฉันต้องการส่งอีเมลจากเซิร์ฟเวอร์ในพื้นที่ ฉันหมายความว่ามีวิธีการเข้าถึงเซิร์ฟเวอร์การส่งจดหมายที่ใกล้ที่สุดและทำให้มันส่งจดหมายให้ฉัน ฉันหมายถึงฉันสามารถหาที่อยู่ของเซิร์ฟเวอร์เมล yahoo จากนั้นฉันใช้เซิร์ฟเวอร์นั้นเพื่อจุดประสงค์ในการส่งจดหมาย ... เป็นไปได้หรือไม่
user590849

19
คุณต้องกำหนดค่า SMTP บนเซิร์ฟเวอร์ท้องถิ่นของคุณ ลองดูที่โพสต์ที่คล้ายกันstackoverflow.com/questions/4652566/php-mail-setup-in-xampp
Muthu Kumaran

สวัสดี @MuTuKumaran ถ้าเป็นไปได้ว่าจะมีสแปมมีทางออกที่ดีสำหรับการแก้ปัญหาโปรดตอบ
Muhammad Ashikuzzaman

@MuhammadAshikuzzaman คุณไม่สามารถแก้ไขปัญหาสแปมใน PHP ได้ โปรดถามคำถามใหม่เกี่ยวกับไซต์ StackExchange ที่เหมาะสมหากยังคงเกี่ยวข้อง
Uli Köhler

จะตรวจสอบหรือตรวจสอบว่ามันทำงานบนเซิร์ฟเวอร์ท้องถิ่นของฉันได้อย่างไร หากไม่สามารถทำได้โปรดแนะนำทางเลือกอื่น ๆ ขอบคุณ.
abhishah901

120

นอกจากนี้คุณยังสามารถใช้ระดับ PHPMailer ที่https://github.com/PHPMailer/PHPMailer

ช่วยให้คุณใช้ฟังก์ชั่นเมลหรือใช้เซิร์ฟเวอร์ smtp อย่างโปร่งใส นอกจากนี้ยังจัดการอีเมลและไฟล์แนบแบบ HTML ดังนั้นคุณไม่จำเป็นต้องเขียนการใช้งานของคุณเอง

ชั้นเรียนมีความเสถียรและมีการใช้งานโดยโครงการอื่น ๆ เช่น Drupal, SugarCRM, Yii และ Joomla!

นี่คือตัวอย่างจากหน้าข้างบน:

<?php
require 'PHPMailerAutoload.php';

$mail = new PHPMailer;

$mail->isSMTP();                                      // Set mailer to use SMTP
$mail->Host = 'smtp1.example.com;smtp2.example.com';  // Specify main and backup SMTP servers
$mail->SMTPAuth = true;                               // Enable SMTP authentication
$mail->Username = 'user@example.com';                 // SMTP username
$mail->Password = 'secret';                           // SMTP password
$mail->SMTPSecure = 'tls';                            // Enable encryption, 'ssl' also accepted

$mail->From = 'from@example.com';
$mail->FromName = 'Mailer';
$mail->addAddress('joe@example.net', 'Joe User');     // Add a recipient
$mail->addAddress('ellen@example.com');               // Name is optional
$mail->addReplyTo('info@example.com', 'Information');
$mail->addCC('cc@example.com');
$mail->addBCC('bcc@example.com');

$mail->WordWrap = 50;                                 // Set word wrap to 50 characters
$mail->addAttachment('/var/tmp/file.tar.gz');         // Add attachments
$mail->addAttachment('/tmp/image.jpg', 'new.jpg');    // Optional name
$mail->isHTML(true);                                  // Set email format to HTML

$mail->Subject = 'Here is the subject';
$mail->Body    = 'This is the HTML message body <b>in bold!</b>';
$mail->AltBody = 'This is the body in plain text for non-HTML mail clients';

if(!$mail->send()) {
    echo 'Message could not be sent.';
    echo 'Mailer Error: ' . $mail->ErrorInfo;
} else {
    echo 'Message has been sent';
}

4
หากไม่ได้ใช้ผู้แต่ง:use PHPMailer\PHPMailer\PHPMailer; use PHPMailer\PHPMailer\Exception; require_once('src/PHPMailer.php'); require_once('src/Exception.php');
Wtower

43

หากคุณมีความสนใจในอีเมลที่มีรูปแบบ html ตรวจสอบให้แน่ใจว่าได้ผ่านContent-type: text/html;ในส่วนหัว ตัวอย่าง:

// multiple recipients
$to  = 'aidan@example.com' . ', '; // note the comma
$to .= 'wez@example.com';

// subject
$subject = 'Birthday Reminders for August';

// message
$message = '
<html>
<head>
  <title>Birthday Reminders for August</title>
</head>
<body>
  <p>Here are the birthdays upcoming in August!</p>
  <table>
    <tr>
      <th>Person</th><th>Day</th><th>Month</th><th>Year</th>
    </tr>
    <tr>
      <td>Joe</td><td>3rd</td><td>August</td><td>1970</td>
    </tr>
    <tr>
      <td>Sally</td><td>17th</td><td>August</td><td>1973</td>
    </tr>
  </table>
</body>
</html>
';

// To send HTML mail, the Content-type header must be set
$headers  = 'MIME-Version: 1.0' . "\r\n";
$headers .= 'Content-type: text/html; charset=iso-8859-1' . "\r\n";

// Additional headers
$headers .= 'To: Mary <mary@example.com>, Kelly <kelly@example.com>' . "\r\n";
$headers .= 'From: Birthday Reminder <birthday@example.com>' . "\r\n";
$headers .= 'Cc: birthdayarchive@example.com' . "\r\n";
$headers .= 'Bcc: birthdaycheck@example.com' . "\r\n";

// Mail it
mail($to, $subject, $message, $headers);

สำหรับรายละเอียดเพิ่มเติมให้ตรวจสอบฟังก์ชั่นจดหมาย PHP


สวัสดีฉันเหนื่อยรหัสนี้ฉันได้เพิ่มผู้รับ 3 รายหนึ่ง Hotmail หนึ่ง Gmail และอีเมลเว็บไซต์ของฉัน ฉันได้รับทั้งหมดยกเว้น Hotmail คุณมีความคิดว่าเหตุใดจึงไม่ทำงานกับ Hotmail
antf

โปรดตรวจสอบโฟลเดอร์สแปมในกรณีนั้น
Sumoanand

ฉันทำไปแล้วมันไม่ได้อยู่ในจดหมายขยะ แต่ไม่ถึงเลย ฉันอ่านเพิ่มเติมเล็กน้อยเกี่ยวกับหัวเรื่องและดูเหมือนว่า Hotmail ต้องการส่วนหัวพิเศษหรือไม่อนุญาตให้อีเมลผ่านเซิร์ฟเวอร์ของพวกเขา ... ฉันยังไม่พบวิธีแก้ปัญหา
antf

ฉันแก้ไขปัญหาโดยใช้ PHPMailer และป้อนข้อมูลบัญชีอีเมลของฉันด้วย SSL ในวัตถุอีเมลของ PHPMailer
antf

จะทำอย่างไรถ้าข้อความนั้นมีเนื้อหา HTML และ php

14

ดูยังในแพคเกจอีเมลลูกแพร์ Pear Mail

ดูเหมือนว่าจะมีความแข็งแกร่งกว่าฟังก์ชั่น mail () มาตรฐานเล็กน้อยที่สร้างขึ้น (หากฟังก์ชันมาตรฐานไม่เพียงพอ)

นี่คือข้อความที่ตัดตอนมาจากหน้านี้แสดงวิธีการใช้งาน การใช้ส่ง PEAR Mail ()

<?php
    include('Mail.php');

    $recipients = 'joe@example.com';

    $headers['From']    = 'richard@example.com';
    $headers['To']      = 'joe@example.com';
    $headers['Subject'] = 'Test message';

    $body = 'Test message';

    $smtpinfo["host"] = "smtp.server.com";
    $smtpinfo["port"] = "25";
    $smtpinfo["auth"] = true;
    $smtpinfo["username"] = "smtp_user";
    $smtpinfo["password"] = "smtp_password";


    // Create the mail object using the Mail::factory method
    $mail_object =& Mail::factory("smtp", $smtpinfo); 

    $mail_object->send($recipients, $headers, $body);
?> 

โปรดให้ลิงค์ดาวน์โหลดของลิงค์ mail.php ที่คุณใช้และไฟล์อื่น ๆ ที่เกี่ยวข้องทั้งหมดในโฟลเดอร์ ขอบคุณ
Muhammad Ashikuzzaman

1
@Ashik Mail.phpไฟล์ที่อ้างอิงในตัวอย่างของฉันเป็นส่วนหนึ่งของแพ็คเกจ Pear Mail หากคุณดาวน์โหลดและติดตั้งแพ็คเกจ Pear Mail คุณจะสามารถรวมMail.phpได้ หากคุณคลิกที่ลิงค์ 'หน้าจดหมายลูกแพร์' ด้านบนแสดงลิงค์ดาวน์โหลดพร้อมคำแนะนำ
Kevin S

12

สำหรับโครงการส่วนใหญ่ฉันใช้Swift mailer ในปัจจุบัน มันเป็นวิธีการเชิงวัตถุที่มีความยืดหยุ่นมากและสง่างามในการส่งอีเมลที่สร้างขึ้นโดยคนเดียวกันกับที่ทำให้เราเป็นที่นิยมกรอบ Symfonyและแม่แบบเครื่องยนต์ทวิ


การใช้งานขั้นพื้นฐาน:

require 'mail/swift_required.php';

$message = Swift_Message::newInstance()
    // The subject of your email
    ->setSubject('Jane Doe sends you a message')
    // The from address(es)
    ->setFrom(array('jane.doe@gmail.com' => 'Jane Doe'))
    // The to address(es)
    ->setTo(array('frank.stevens@gmail.com' => 'Frank Stevens'))
    // Here, you put the content of your email
    ->setBody('<h3>New message</h3><p>Here goes the rest of my message</p>', 'text/html');

if (Swift_Mailer::newInstance(Swift_MailTransport::newInstance())->send($message)) {
    echo json_encode([
        "status" => "OK",
        "message" => 'Your message has been sent!'
    ], JSON_PRETTY_PRINT);
} else {
    echo json_encode([
        "status" => "error",
        "message" => 'Oops! Something went wrong!'
    ], JSON_PRETTY_PRINT);
}

ดูเอกสารทางการสำหรับข้อมูลเพิ่มเติมเกี่ยวกับวิธีใช้ Swift mailer


สวัสดี คุณบอกว่าเมื่อเชื่อมโยงไปยังเอกสารกล่าวว่าSwift_MailTransport Swift_SendmailTransportหมายความว่าคุณอ้างถึงจดหมาย swift รุ่นเก่าหรือเป็นตัวพิมพ์ผิดหรือบางทีฉันเข้าใจผิดบางอย่าง? ฉันต้องติดตั้ง swift-mailer รุ่นเก่ากว่าเพราะฉันไม่มี php7 บนเซิร์ฟเวอร์ของฉัน ดังนั้นฉันจำเป็นต้องรู้ว่าเอกสารสำหรับรุ่นปัจจุบันจะไปกับแพ็คเกจที่เก่ากว่าหรือไม่ ขอบคุณ
Yevgeniy Afanasyev

1
@YevgeniyAfanasyev: คำตอบของฉันเป็นวิธีที่ถูกต้องที่จะทำสิ่ง 2 ปีที่ผ่านมา แต่Swift_MailTransport ได้เลิกใช้ตั้งแต่ Swiftmailer v5.4.5 อย่างไรก็ตามถ้าคุณไม่สามารถใช้ PHP 7 สำหรับโครงการของคุณคุณควรไปกับ Swiftmailer v5.4.9 นั่นเป็นรุ่นที่มีเสถียรภาพที่ผ่านมาว่ายังคงสนับสนุน PHP 5. สำหรับเอกสารรุ่น v5.4.9 หรือรายละเอียดเกี่ยวกับความแตกต่างระหว่าง v5.4.9 และ v6.0.2 คุณอาจต้องการที่จะติดต่อFabien Potencierหรือเพิ่มปัญหาบน Github
John Slegers

ขอบคุณมาก. ดังนั้นจึงไม่มีเอกสารสำหรับรุ่นเก่าอย่างล้ำลึกเมื่อมีตัวแทนจำหน่าย ดีแล้วที่รู้.
Yevgeniy Afanasyev

7

นี่เป็นวิธีพื้นฐานในการส่งอีเมลข้อความธรรมดาโดยใช้ฟังก์ชั่นเมล

<?php
$to = 'SomeOtherEmailAddress@Domain.com';
$subject = 'This is subject';
$message = 'This is body of email';
$from = "From: FirstName LastName <SomeEmailAddress@Domain.com>";
mail($to,$subject,$message,$from);

7

ลองสิ่งนี้:

<?php
$to = "somebody@example.com";
$subject = "My subject";
$txt = "Hello world!";
$headers = "From: webmaster@example.com" . "\r\n" .
"CC: somebodyelse@example.com";

mail($to,$subject,$txt,$headers);
?>

5

ตัวอย่างรหัสแบบเต็ม ..

ลองครั้งเดียว ..

<?php
// Multiple recipients
$to = 'johny@example.com, sally@example.com'; // note the comma

// Subject
$subject = 'Birthday Reminders for August';

// Message
$message = '
<html>
<head>
  <title>Birthday Reminders for August</title>
</head>
<body>
  <p>Here are the birthdays upcoming in August!</p>
  <table>
    <tr>
      <th>Person</th><th>Day</th><th>Month</th><th>Year</th>
    </tr>
    <tr>
      <td>Johny</td><td>10th</td><td>August</td><td>1970</td>
    </tr>
    <tr>
      <td>Sally</td><td>17th</td><td>August</td><td>1973</td>
    </tr>
  </table>
</body>
</html>
';

// To send HTML mail, the Content-type header must be set
$headers[] = 'MIME-Version: 1.0';
$headers[] = 'Content-type: text/html; charset=iso-8859-1';

// Additional headers
$headers[] = 'To: Mary <mary@example.com>, Kelly <kelly@example.com>';
$headers[] = 'From: Birthday Reminder <birthday@example.com>';
$headers[] = 'Cc: birthdayarchive@example.com';
$headers[] = 'Bcc: birthdaycheck@example.com';

// Mail it
mail($to, $subject, $message, implode("\r\n", $headers));
?>

5

สำหรับผู้อ่านในอนาคต: ลองทำสิ่งนี้หากคำตอบอื่น ๆ ใช้ไม่ได้ (เช่นเดียวกับฉัน):

1. ) ดาวน์โหลดPHPMailerเปิดไฟล์ zip และแตกโฟลเดอร์ไปยังไดเรกทอรีโครงการของคุณ

3. ) เปลี่ยนชื่อไดเรกทอรีที่แยกเป็นPHPMailerและเขียนรหัสด้านล่างของสคริปต์ PHP ของคุณ (สคริปต์จะต้องอยู่นอกโฟลเดอร์PHPMailer )

<?php
// PHPMailer classes into the global namespace
use PHPMailer\PHPMailer\PHPMailer; 
use PHPMailer\PHPMailer\Exception;
// Base files 
require 'PHPMailer/src/Exception.php';
require 'PHPMailer/src/PHPMailer.php';
require 'PHPMailer/src/SMTP.php';
// create object of PHPMailer class with boolean parameter which sets/unsets exception.
$mail = new PHPMailer(true);                              
try {
    $mail->isSMTP(); // using SMTP protocol                                     
    $mail->Host = 'smtp.gmail.com'; // SMTP host as gmail 
    $mail->SMTPAuth = true;  // enable smtp authentication                             
    $mail->Username = 'sender@gmail.com';  // sender gmail host              
    $mail->Password = 'password'; // sender gmail host password                          
    $mail->SMTPSecure = 'tls';  // for encrypted connection                           
    $mail->Port = 587;   // port for SMTP     

    $mail->setFrom('sender@gmail.com', "Sender"); // sender's email and name
    $mail->addAddress('receiver@gmail.com', "Receiver");  // receiver's email and name

    $mail->Subject = 'Test subject';
    $mail->Body    = 'Test body';

    $mail->send();
    echo 'Message has been sent';
} catch (Exception $e) { // handle error.
    echo 'Message could not be sent. Mailer Error: ', $mail->ErrorInfo;
}
?>

5

ฟังก์ชัน PHP ดั้งเดิมmail()ไม่ทำงานสำหรับฉัน มันออกข้อความ:

503 เซิร์ฟเวอร์อีเมลนี้ต้องการการรับรองความถูกต้องเมื่อพยายามส่งไปยังที่อยู่อีเมลที่ไม่ใช่ในเครื่อง

ดังนั้นฉันมักจะใช้PHPMailerแพคเกจ

ผมได้ดาวน์โหลดเวอร์ชัน 5.2.23 จาก: GitHub

ฉันเพิ่งเลือก 2 ไฟล์และวางไว้ในรูท PHP ต้นทางของฉัน

class.phpmailer.php
class.smtp.php

ใน PHP จะต้องมีการเพิ่มไฟล์

require_once('class.smtp.php');
require_once('class.phpmailer.php');

หลังจากนี้มันเป็นเพียงรหัส:

require_once('class.smtp.php');
require_once('class.phpmailer.php');
... 
//----------------------------------------------
// Send an e-mail. Returns true if successful 
//
//   $to - destination
//   $nameto - destination name
//   $subject - e-mail subject
//   $message - HTML e-mail body
//   altmess - text alternative for HTML.
//----------------------------------------------
function sendmail($to,$nameto,$subject,$message,$altmess)  {

  $from  = "yourcontact@yourdomain.com";
  $namefrom = "yourname";
  $mail = new PHPMailer();  
  $mail->CharSet = 'UTF-8';
  $mail->isSMTP();   // by SMTP
  $mail->SMTPAuth   = true;   // user and password
  $mail->Host       = "localhost";
  $mail->Port       = 25;
  $mail->Username   = $from;  
  $mail->Password   = "yourpassword";
  $mail->SMTPSecure = "";    // options: 'ssl', 'tls' , ''  
  $mail->setFrom($from,$namefrom);   // From (origin)
  $mail->addCC($from,$namefrom);      // There is also addBCC
  $mail->Subject  = $subject;
  $mail->AltBody  = $altmess;
  $mail->Body = $message;
  $mail->isHTML();   // Set HTML type
//$mail->addAttachment("attachment");  
  $mail->addAddress($to, $nameto);
  return $mail->send();
}

มันทำงานเหมือนจับใจ


2
ขอบคุณสำหรับคำตอบ. คุณมีข้อเสนอแนะเช่นเดียวกับ @norteo ที่ระบุไว้ในคำตอบของเขา โปรดทราบว่า v5.2 เลิกใช้แล้วและไม่ได้รับการอัปเดตความปลอดภัย สำหรับ v6 คุณสามารถขอได้โดยตรง:use PHPMailer\PHPMailer\PHPMailer; use PHPMailer\PHPMailer\Exception; require_once('src/PHPMailer.php'); require_once('src/Exception.php');
Wtower

4

วิธีหลักในการส่งอีเมลจาก PHP คือการใช้mail()ฟังก์ชั่นที่มีในตัว แต่มี SDK ที่พร้อมใช้งานสองตัวซึ่งสามารถรวมการใช้งานได้ง่าย:

  1. Swiftmailer
  2. PHPMailer
  3. Pepipost (ทำงานผ่าน HTTP ทำให้สามารถบล็อกปัญหาพอร์ต SMTP ได้)
  4. ส่งอีเมล์

ป.ล. ฉันทำงานกับ Pepipost


3
คุณทำงานกับ Pepipost และคุณใส่ Pepipost ที่ข้อ 3 +1
GeneCode

2
@GeneCode หากสิ่งที่ดีที่สุดก็คือ ไม่สำคัญว่าคุณจะทำงานกับพวกเขาหรือไม่ :) Swiftmailer และ PHPMailer เป็นหนึ่งในเครื่องมือโอเพ่นซอร์สที่ดีที่สุดสำหรับการส่งอีเมล แต่ในขณะเดียวกันพวกเขาก็มีข้อ จำกัด และตัวบล็อกเกอร์ซึ่งเราพยายามพูดถึงใน Pepipost SDK ของเรา
Dibya Sahoo

3

คุณสามารถใช้บริการเว็บเมลเช่น Postmark, Sendgrid เป็นต้น

Sendgrid vs Postmark vs Amazon SES และผู้ให้บริการอีเมล / SMTP API อื่น ๆ

แก้ไข: ฉันเพิ่งใช้Google Gmail APIตอนนี้ ฉันมีปัญหาในการส่งอีเมลเตือนความจำไปยังองค์กรนายจ้างของฉันเนื่องจากตัวกรองที่เข้มงวด แต่ Gmail จะทำงานตราบใดที่คุณไม่ได้เป็นคนสแปม


1

ส่งอีเมลพร้อมสคริปต์นี้

<h2>Test Mail</h2>
<?php

if (!isset($_POST["submit"]))
  {
  ?>
  <form method="post" action="<?php echo $_SERVER["PHP_SELF"];?>">
  From: <input type="text" name="from"><br>
  Subject: <input type="text" name="subject"><br>
  Message: <textarea rows="10" cols="40" name="message"></textarea><br>
  <input type="submit" name="submit" value="Click To send mail">
  </form>
  <?php
  }

else

  {

  if (isset($_POST["from"]))
    {
    $from = $_POST["from"]; // sender
    $subject = $_POST["subject"];
    $message = $_POST["message"];

    $message = wordwrap($message, 70);

    mail("Test@example.com",$subject,$message,"From: $from\n");
    echo "Thank you for sending an email";
    }
  }
?>

เมื่อคุณกดปุ่มส่งอีเมลอีเมลจะถูกส่งไปที่ Test@example.com


1
<?php
include "db_conn.php";//connection file
require "PHPMailerAutoload.php";// it will be in PHPMailer
require "class.smtp.php";// it will be in PHPMailer
require "class.phpmailer.php";// it will be in PHPMailer


$response = array();
$params = json_decode(file_get_contents("php://input"));

if(!empty($params->email_id)){

    $email_id = $params->email_id;
    $flag=false;
    echo "something";
    if(!filter_var($email_id, FILTER_VALIDATE_EMAIL))
    {
        $response['ERROR']='EMAIL address format error'; 
        echo json_encode($response,JSON_UNESCAPED_SLASHES);
        return;
    }
    $sql="SELECT * from sales where email_id ='$email_id' ";

    $result = mysqli_query($conn,$sql);
    $count = mysqli_num_rows($result);

    $to = "demo@gmail.com";
    $subject = "DEMO Subject";
    $messageBody ="demo message .";

    if($count ==0){
        $response["valid"] = false;
        $response["message"] = "User is not registered yet";
        echo json_encode($response);
        return;
    }

    else {

        $mail = new PHPMailer();
        $mail->IsSMTP();
        $mail->SMTPAuth = true; // authentication enabled
        $mail->IsHTML(true); 
        $mail->SMTPSecure = 'ssl';//turn on to send html email
        // $mail->Host = "ssl://smtp.zoho.com";
        $mail->Host = "p3plcpnl0749.prod.phx3.secureserver.net";//you can use gmail 
        $mail->Port = 465;
        $mail->Username = "demousername@example.com";
        $mail->Password = "demopassword";
        $mail->SetFrom("demousername@example.com", "Any demo alert");
        $mail->Subject = $subject;

        $mail->Body = $messageBody;
        $mail->AddAddress($to);
        echo "yes";

        if(!$mail->send()) {
           echo "Mailer Error: " . $mail->ErrorInfo;
       } 
       else {
           echo "Message has been sent successfully";
      }
    }

}
else{
    $response["valid"] = false;
    $response["message"] = "Required field(s) missing";
    echo json_encode($response);
}


?>

รหัสด้านบนใช้งานได้สำหรับฉัน

โดยการใช้ไซต์ของเรา หมายความว่าคุณได้อ่านและทำความเข้าใจนโยบายคุกกี้และนโยบายความเป็นส่วนตัวของเราแล้ว
Licensed under cc by-sa 3.0 with attribution required.