[phpBB Debug] PHP Warning: in file [ROOT]/includes/crs/crs_misc_functions.php on line 37: mime_content_type(): Empty filename or path
[phpBB Debug] PHP Warning: in file [ROOT]/includes/crs/crs_misc_functions.php on line 37: mime_content_type(): Empty filename or path
Zen Cart 源代码 email_use_8bit.php

Zen Cart 源代码 email_use_8bit.php




下载文件

文件名: email_use_8bit.php
文件类型: PHP文件
文件大小: 771 Bytes
MD5: 345da4cc869ab8c3912528b5859a9ba1

email_use_8bit.php - 关闭高亮
  1. <?php
  2. /**
  3.  * used only to override the email encoding method for backward compatibility.
  4.  *
  5.  * This file may NOT be required, depending on your host mailserver configuration.
  6.  *
  7.  * @package constants
  8.  * @copyright Copyright 2003-2006 Zen Cart Development Team
  9.  * @license http://www.zen-cart.com/license/2_0.txt GNU Public License V2.0
  10.  * @version $Id: email_use_8bit.php 4843 2006-10-26 06:07:44Z drbyte $
  11.  */
  12. /**
  13.  * specify the email encoding method to be used for sending emails
  14.  * If unspecified, the default is 7bit.
  15.  * Possible meaningful options are: "8bit" (older style), "7bit" (preferred), and "quoted-printable".
  16.  *
  17.  * To use 7bit, simply delete this file, or change the following to 7bit:
  18.  */
  19.   define('EMAIL_ENCODING_METHOD', '8bit');
  20. ?>