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>");
}
?>
2013年3月22日星期五
[小貼士] Sublime Text 2 同時修改多行
[Tips] Sublime Text 2 edit multiple lines
同時按 Control + Shift + L 可修改多行
或按緊 control 鍵點選多行後,直接修改多行
同時按 Control + Shift + L 可修改多行
或按緊 control 鍵點選多行後,直接修改多行
訂閱:
文章 (Atom)