zoukankan      html  css  js  c++  java
  • PHPMailer&Gmail

    代码
    # --- Email Configuration ---
    #
     Gmail : http://www.mantisbt.org/bugs/view.php?id=8369
    $g_phpMailer_method    = 2;
    $g_smtp_host        = 'ssl://smtp.gmail.com:465'##PHP_OpenSSL
    $g_smtp_username    = 'MantisBT@10cn.net';
    $g_smtp_password    = '********';
    $g_administrator_email  = 'MantisBT@10cn.net';
    $g_webmaster_email      = 'MantisBT@10cn.net';
    $g_from_name        = 'Mantis Bug Tracker';
    $g_from_email           = 'MantisBT@gmail.com';
    $g_return_path_email    = 'MantisBT@gmail.com';
    $g_email_receive_own    = OFF;
    $g_email_send_using_cronjob = OFF;
    $g_enable_email_notification = ON;

    $g_use_phpMailer     = ON;  
    $g_phpMailer_path     = 'C:/PHPMailer/'
  • 相关阅读:
    Vue 项目目录结构分析
    Vue 项目环境搭建
    Vue 组件
    Vue 指令
    Vue 实例成员
    Django 静态文件
    MySQL 索引详解
    Django 请求生命周期
    18. 4Sum (JAVA)
    16. 3Sum Closest (JAVA)
  • 原文地址:https://www.cnblogs.com/publicbill/p/1728844.html
Copyright © 2011-2022 走看看