อยากได้โคด php ส่งเมลล์ผ่าน smtp อ่ะครับ ผมลองหาข้อมูลมาหลายเว็บแล้ว ยังไม่ได้ซักที
ไฟล์ mail.php ไม่มีครับ มันเป็น phpmailer ละมั้ง
Date :
2009-07-18 23:31:30
By :
mr.v
Thank
Date :
2010-12-14 14:58:22
By :
aaaa
require_once(Mail.php) [function.require-once] ตามนี้เลย ขาด mail.php
Date :
2010-12-14 15:05:22
By :
mzchewiize
ใช้ phpmailer ครับ
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";
}
?>
Go to : PHP Sending Email Using SMTP Authentication
Date :
2011-07-07 10:58:44
By :
webmaster
Load balance : Server 02