|
|
|
การส่ง mail โดย server ของทางผม ไม่มี SMTP server ครับ |
|
|
|
|
|
|
|
ก็สามารถกำหนด smtp server ได้ครับโดยไปกำหนด smtp server, smtp port ได้ที่ php.ini ครับ
หรือถ้าไม่อยากแก้ไฟล์ php.ini ก็ใช้คำสั้ง
ini_set("SMTP", ชื่อเคื่องหรือ ip ของ smtp server);
ini_set("smtp_port", port ของ smtp server);
และที่สำคัญคือเครืองของเราต้องสามารถ connect ไปยัง เครื่อง SMTP SERVER ได้น๊ะครับ
|
|
|
|
|
Date :
2011-06-20 11:50:19 |
By :
windersun |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ลองใช้ SMTP ของ Gmail ก็ได้ครับ เพียงใช้ Account ของ GMail ก็สามารถใช้ได้แล้วครับ
Code (PHP)
<html>
<head>
<title>ThaiCreate.Com Tutorial</title>
</head>
<body>
<?php
require_once('class.phpmailer.php');
$mail = new PHPMailer();
$mail->IsHTML(true);
$mail->IsSMTP();
$mail->SMTPAuth = true; // enable SMTP authentication
$mail->SMTPSecure = "ssl"; // sets the prefix to the servier
$mail->Host = "smtp.gmail.com"; // sets GMAIL as the SMTP server
$mail->Port = 465; // set the SMTP port for the GMAIL server
$mail->Username = "[email protected]"; // GMAIL username
$mail->Password = "mypassword"; // GMAIL password
$mail->From = "[email protected]"; // "[email protected]";
//$mail->AddReplyTo = "[email protected]"; // Reply
$mail->FromName = "Mr.Weerachai Nukitram"; // set from Name
$mail->Subject = "Test sending mail.";
$mail->Body = "My Body & <b>My Description</b>";
$mail->AddAddress("[email protected]", "Mr.Adisorn Boonsong"); // to Address
$mail->AddAttachment("thaicreate/myfile.zip");
$mail->AddAttachment("thaicreate/myfile2.zip");
//$mail->AddCC("[email protected]", "Mr.Member ShotDev"); //CC
//$mail->AddBCC("[email protected]", "Mr.Member ShotDev"); //CC
$mail->set('X-Priority', '1'); //Priority 1 = High, 3 = Normal, 5 = low
$mail->Send();
?>
</body>
</html>
Go to : PHP Sending Email Using Gmail SMTP Account Authentication
|
|
|
|
|
Date :
2011-06-22 16:14:11 |
By :
webmaster |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Code (PHP)
<?php
require("class.phpmailer.php");
$mail = new PHPMailer();$mail = new PHPMailer();
$mail->IsSMTP();
$mail->Host = "smtp1.example.com;smtp2.example.com";
$mail->SMTPAuth = true;
$mail->Username = 'smtpusername';
$mail->Password = 'smtppassword';
$mail->From="[email protected]";
$mail->FromName="My site's mailer";
$mail->Sender="[email protected]";
$mail->AddReplyTo("[email protected]", "Replies for my site");
$mail->AddAddress("[email protected]");
$mail->Subject = "Your invoice";
$mail->IsHTML(false);
$mail->AddAttachment('files/invoice-user-1234.pdf', 'invoice.pdf'); // attach files/invoice-user-1234.pdf, and rename it to invoice.pdf
$mail->Body = "Please find your invoice attached.";
if(!$mail->Send())
{
echo "Error sending: " . $mail->ErrorInfo;;
}
else
{
echo "Letter is sent";
}
?>
|
|
|
|
|
Date :
2011-07-06 16:27:40 |
By :
webmaster |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 03
|