2013年3月24日星期日

使用PHP SMTP發送GMAIL電郵


<?php
require_once "Mail.php";

$from = "myaccount@gmail.com"; //發件人地址
$to = "abc@yahoo.com"; //收件人地址
$subject = "Hi!"; //標題
$body = "Hi,\n\nHow are you?"; //內容

$host = "ssl://smtp.gmail.com";
$port = "465";
$username = "myaccount@gmail.com"; //GMAIL帳戶
$password = "password";// GMAIL密碼

$headers = array ('From' => $from,
'To' => $to,
'Subject' => $subject);
$smtp = Mail::factory('smtp',
array ('host' => $host,
'port' => $port,
'auth' => true,
'username' => $username,
'password' => $password));

$mail = $smtp->send($to, $headers, $body);

if (PEAR::isError($mail)) {
echo("<p>" . $mail->getMessage() . "</p>");

else {
echo("<p>Message successfully sent!</p>");
}
?>


如果想發送 BCC 密件收件人,因為預設並沒有BCC 這個屬性,但也可發送 BCC的,可加入以下句法:
在 header 之後加入
$to = $to.",abc@mail.com";  //bcc
然後才發出 $mail = $smtp->send($to, $headers, $body);

這樣 header 就不會包含到後加的 abc@gmail.com

沒有留言:

發佈留言