email_use_8bit.php

来自「Zen Cart是真正的电子商务艺术」· PHP 代码 · 共 20 行

PHP
20
字号
<?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 6028 2007-03-21 09:12:39Z 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');
?>

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?