[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: 08fb5453786f3cff1c1a8d544721ba2d

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