Example #1
0
 function __construct()
 {
     $smtp = CORE::$cfg['smtp'];
     CORE::summon(__FILE__);
     self::$call = new PHPMailer();
     self::$call->IsSMTP();
     self::$call->SMTPAuth = true;
     self::$call->SMTPSecure = "ssl";
     # 設定 SSL 連線
     self::$call->Host = $smtp['host'];
     # 主機位置
     self::$call->Port = $smtp['port'];
     # Gmail 是 465
     # 信件內容的編碼方式
     self::$call->CharSet = "utf-8";
     # 信件處理的編碼方式
     self::$call->Encoding = "base64";
     # SMTP 驗證的使用者資訊
     self::$call->Username = $smtp['account'];
     # mail 帳號
     self::$call->Password = $smtp['pass'];
     # mail 密碼
 }